Class Range

java.lang.Object
ch.rabanti.nanoxlsx4j.Range

public class Range extends Object
Class representing a cell range (no getters and setters to simplify handling)
Author:
Raphael Stoeckli
  • Field Details

    • EndAddress

      public final Address EndAddress
      End address of the range
    • StartAddress

      public final Address StartAddress
      Start address of the range
  • Constructor Details

    • Range

      public Range(Address start, Address end)
      Constructor with addresses as arguments. The addresses are automatically swapped if the start address is greater than the end address
      Parameters:
      start - Start address of the range
      end - End address of the range
    • Range

      public Range(String range)
      Constructor with a range string as argument. The addresses are automatically swapped if the start address is greater than the end address
      Parameters:
      range - Address range (e.g. 'A1:B12')
  • Method Details

    • resolveEnclosedAddresses

      public List<Address> resolveEnclosedAddresses()
      Gets a list of all addresses between the start and end address
      Returns:
      List of Addresses
    • toString

      public String toString()
      Overwritten toString method
      Overrides:
      toString in class Object
      Returns:
      Returns the range (e.g. 'A1:B12')
    • equals

      public boolean equals(Object o)
      Overwritten equals method
      Overrides:
      equals in class Object
      Parameters:
      o - Other object to compare
      Returns:
      True if this instance is equal to the other instance
    • hashCode

      public int hashCode()
      Gets the hash code of the range based on its string representation. The cell types (possible $ prefix) are considered
      Overrides:
      hashCode in class Object
      Returns:
      Hash code of the address