Package ch.rabanti.nanoxlsx4j
Class Address
java.lang.Object
ch.rabanti.nanoxlsx4j.Address
- All Implemented Interfaces:
Comparable<Address>
Class representing a cell address (no getters and setters to simplify handling)
- Author:
- Raphael Stoeckli
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal int
Column of the address (zero-based)final int
Row of the address (zero-based)final Cell.AddressType
-
Constructor Summary
ConstructorsConstructorDescriptionAddress
(int column, int row) Constructor with row and column as arguments.Address
(int column, int row, Cell.AddressType type) Constructor with row, column and address type as argumentsConstructor with address as string.Address
(String address, Cell.AddressType type) Constructor with address as string. -
Method Summary
Modifier and TypeMethodDescriptionint
Compares two addresses and returns whether the passed one is bigger or not.boolean
Compares two addresses whether they are equal.Gets the address as stringGets the column address (A - XFD)int
hashCode()
Gets the hash code of the address based on its string representationtoString()
Returns the address as string or "Illegal Address" in case of an exception
-
Field Details
-
Column
public final int ColumnColumn of the address (zero-based) -
Row
public final int RowRow of the address (zero-based) -
Type
-
-
Constructor Details
-
Address
public Address(int column, int row) Constructor with row and column as arguments. The referencing type of the address is default (e.g. 'C20')- Parameters:
column
- Column of the address (zero-based)row
- Row of the address (zero-based)- Throws:
RangeException
- Thrown if the resolved address is out of range
-
Address
Constructor with row, column and address type as arguments- Parameters:
column
- Column of the address (zero-based)row
- Row of the address (zero-based)type
- Referencing type of the address- Throws:
RangeException
- Thrown if the resolved address is out of range
-
Address
Constructor with address as string. If no referencing modifiers ($) are defined, the address is of referencing type default (e.g. 'C23')- Parameters:
address
- Address string (e.g. 'B12')- Throws:
RangeException
- Thrown if the resolved address is out of range
-
Address
Constructor with address as string. All referencing modifiers ($) are ignored and only the defined referencing type considered- Parameters:
address
- Address string (e.g. 'B12')type
- Referencing type of the address- Throws:
RangeException
- Thrown if the resolved address is out of range
-
-
Method Details
-
getAddress
Gets the address as string- Returns:
- Address as string
- Throws:
RangeException
- Thrown if the column or row is out of range
-
getColumn
Gets the column address (A - XFD)- Returns:
- Column address as letter(s)
-
toString
Returns the address as string or "Illegal Address" in case of an exception -
equals
Compares two addresses whether they are equal. The address type id neglected, only the row and column is considered -
hashCode
public int hashCode()Gets the hash code of the address based on its string representation -
compareTo
Compares two addresses and returns whether the passed one is bigger or not. Bigger means: Higher column number and / or higher row number- Specified by:
compareTo
in interfaceComparable<Address>
- Parameters:
other
- Other address to compare- Returns:
- 1 If the other address is bigger, -1 if it is smaller and 0 ist it is equal
-