Package ch.rabanti.nanoxlsx4j
Class Cell
java.lang.Object
ch.rabanti.nanoxlsx4j.Cell
- All Implemented Interfaces:
Comparable<Cell>
Class representing a cell of a worksheet
- Author:
- Raphael Stoeckli
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Enum to define the scope of a passed address string (used in static context)static enum
Enum for the referencing style of the addressstatic enum
Enum defines the basic data types of a cell -
Constructor Summary
ConstructorsConstructorDescriptionCell()
Default constructor.Cell
(Object value, Cell.CellType type) Constructor with value and cell type.Cell
(Object value, Cell.CellType type, int column, int row) Constructor with value, cell type, row number and column numberCell
(Object value, Cell.CellType type, Address address) Constructor with value, cell type and address class.Cell
(Object value, Cell.CellType type, String address) Constructor with value, cell type and address. -
Method Summary
Modifier and TypeMethodDescriptionint
Implemented compareTo methodconvertArray
(List<T> list) Converts a List of supported objects into a list of cellsboolean
static Cell.AddressScope
getAddressScope
(String addressExpression) Gets the scope of the passed address (string expression).Gets the combined cell Address as string in the format A1 - XFD1048576Gets the combined cell address as classGets the optional address type that can be part of the cell address.getCellRange
(int startColumn, int startRow, int endColumn, int endRow) Get a list of cell addresses from a cell rangegetCellRange
(Address startAddress, Address endAddress) Get a list of cell addresses from a cell rangegetCellRange
(String range) Gets a list of cell addresses from a cell range (format A1:B3 or AAD556:AAD1000)getCellRange
(String startAddress, String endAddress) Get a list of cell addresses from a cell rangeGets the assigned style of the cellint
Gets the number of the column (zero-based)Gets the type of the cellint
Gets the number of the row (zero-based)getValue()
Gets the value of the cell (generic object type)void
Removes the assigned style from the cellstatic String
resolveCellAddress
(int column, int row) Gets the address of a cell by the column and row number (zero based)static String
resolveCellAddress
(int column, int row, Cell.AddressType type) Gets the address of a cell by the column and row number (zero based)static Address
resolveCellCoordinate
(String address) Gets the column and row number (zero based) of a cell by the addressstatic Range
resolveCellRange
(String range) Resolves a cell range from the format like A1:B3 or AAD556:AAD1000void
Method resets the Cell type and tries to find the actual type.static int
resolveColumn
(String columnAddress) Gets the column number from the column address (A - XFD)static String
resolveColumnAddress
(int columnNumber) Gets the column address (A - XFD)void
setCellAddress
(String address) Sets the combined cell Address as string in the format A1 - XFD1048576void
setCellAddress2
(Address address) Sets the combined cell address as classvoid
setCellAddressType
(Cell.AddressType cellAddressType) Sets the optional address type that can be part of the cell address.void
setCellLockedState
(boolean isLocked, boolean isHidden) Sets the lock state of the cellvoid
setColumnNumber
(int columnNumber) Sets the number of the column (zero-based)void
setDataType
(Cell.CellType dataType) Sets the type of the cellvoid
setRowNumber
(int rowNumber) Sets the number of the row (zero-based)Sets the style of the cellSets the style of the cellvoid
Sets the value of the cell (generic object type).
-
Constructor Details
-
Cell
public Cell()Default constructor. Cells created with this constructor do not have a link to a worksheet initially -
Cell
Constructor with value and cell type. Cells created with this constructor do not have a link to a worksheet initially- API Note:
- If the
dataType
is defined asCell.CellType.EMPTY
any passed value will be set to null - Parameters:
value
- Value of the celltype
- Type of the cell
-
Cell
Constructor with value, cell type and address. The worksheet reference is set to null and must be assigned later- API Note:
- If the
dataType
is defined asCell.CellType.EMPTY
any passed value will be set to null - Parameters:
value
- Value of the celltype
- Type of the celladdress
- Address of the cell
-
Cell
Constructor with value, cell type and address class. The worksheet reference is set to null and must be assigned later- API Note:
- If the
dataType
is defined asCell.CellType.EMPTY
any passed value will be set to null - Parameters:
value
- Value of the celltype
- Type of the celladdress
- Address class of the cell
-
Cell
Constructor with value, cell type, row number and column number- API Note:
- If the
dataType
is defined asCell.CellType.EMPTY
any passed value will be set to null - Parameters:
value
- Value of the celltype
- Type of the cellcolumn
- Column number of the cell (zero-based)row
- Row number of the cell (zero-based)
-
-
Method Details
-
getCellAddress
Gets the combined cell Address as string in the format A1 - XFD1048576- Returns:
- Cell address
-
setCellAddress
Sets the combined cell Address as string in the format A1 - XFD1048576- Parameters:
address
- Cell address- Throws:
RangeException
- Thrown in case of an illegal address
-
getCellAddress2
Gets the combined cell address as class- Returns:
- Cell address
-
setCellAddress2
Sets the combined cell address as class- Parameters:
address
- Cell address
-
getCellStyle
Gets the assigned style of the cell- Returns:
- Assigned style
-
getColumnNumber
public int getColumnNumber()Gets the number of the column (zero-based)- Returns:
- Column number (zero-based)
-
setColumnNumber
public void setColumnNumber(int columnNumber) Sets the number of the column (zero-based)- Parameters:
columnNumber
- Column number (zero-based)
-
getDataType
Gets the type of the cell- Returns:
- Type of the cell
-
setDataType
Sets the type of the cell- Parameters:
dataType
- Type of the cell
-
getRowNumber
public int getRowNumber()Gets the number of the row (zero-based)- Returns:
- Row number (zero-based)
-
setRowNumber
public void setRowNumber(int rowNumber) Sets the number of the row (zero-based)- Parameters:
rowNumber
- Row number (zero-based)
-
getCellAddressType
Gets the optional address type that can be part of the cell address.- API Note:
- The type has no influence on the behavior of the cell, though. It is preserved to avoid losing information on the address object of the cell
- Returns:
- Address type
-
setCellAddressType
Sets the optional address type that can be part of the cell address.- API Note:
- The type has no influence on the behavior of the cell, though. It is preserved to avoid losing information on the address object of the cell
- Parameters:
cellAddressType
- Address type
-
getValue
Gets the value of the cell (generic object type)- Returns:
- Value of the cell
-
setValue
Sets the value of the cell (generic object type). When setting a value, thedataType
is automatically resolved- Parameters:
value
- Value of the cell
-
compareTo
Implemented compareTo method- Specified by:
compareTo
in interfaceComparable<Cell>
- Implementation Note:
- Note that this method only compares the row and column numbers, since the values or styles may
completely different types, and therefore hard to compare at all.
The Equals() method considers values and style, though. - Parameters:
other
- Object to compare- Returns:
- 0 if values are the same, -1 if this object is smaller, 1 if it is bigger
-
equals
-
removeStyle
public void removeStyle()Removes the assigned style from the cell- Throws:
StyleException
- Thrown if the workbook to remove was not found in the style sheet collection
-
resolveCellType
public void resolveCellType()Method resets the Cell type and tries to find the actual type. This is used if a Cell was created with the CellType DEFAULT or automatically if a value was set bysetValue(Object)
. CellType FORMULA will skip this method and EMPTY will discard the value of the cell -
setCellLockedState
public void setCellLockedState(boolean isLocked, boolean isHidden) Sets the lock state of the cell- API Note:
- The listed exception should never happen because the mentioned style is internally generated
- Parameters:
isLocked
- If true, the cell will be locked if the worksheet is protectedisHidden
- If true, the value of the cell will be invisible if the worksheet is protected- Throws:
StyleException
- Throws an UndefinedStyleException if the style used to lock cells cannot be referenced
-
setStyle
Sets the style of the cell- Parameters:
style
- style to assign- Returns:
- If the passed style already exists in the repository, the existing one will be returned, otherwise the passed one
-
setStyle
Sets the style of the cell- Parameters:
style
- style to assignunmanaged
- Internally used: If true, the style repository is not invoked and only the style object of the cell is updated. Do not use!- Returns:
- If the passed style already exists in the repository, the existing one will be returned, otherwise the passed one
-
convertArray
Converts a List of supported objects into a list of cells- Type Parameters:
T
- Generic data type- Parameters:
list
- List of generic objects- Returns:
- List of cells
-
getCellRange
Gets a list of cell addresses from a cell range (format A1:B3 or AAD556:AAD1000)- Parameters:
range
- Range to process- Returns:
- List of cell addresses
- Throws:
FormatException
- Throws a FormatException if a part of the passed range is malformedRangeException
- Throws a RangeException if the range is out of range (A-XFD and 1 to 1048576)
-
getCellRange
Get a list of cell addresses from a cell range- Parameters:
startAddress
- Start address as string in the format A1 - XFD1048576endAddress
- End address as string in the format A1 - XFD1048576- Returns:
- List of cell addresses
- Throws:
FormatException
- Throws a FormatException if a part of the passed range is malformedRangeException
- Throws a RangeException if the range is out of range (A-XFD and 1 to 1048576)
-
getCellRange
Get a list of cell addresses from a cell range- Parameters:
startColumn
- Start column (zero based)startRow
- Start roe (zero based)endColumn
- End column (zero based)endRow
- End row (zero based)- Returns:
- List of cell addresses
- Throws:
RangeException
- Throws a RangeException if the value of one passed address parts is out of range (A-XFD and 1 to 1048576)
-
getCellRange
Get a list of cell addresses from a cell range- Parameters:
startAddress
- Start addressendAddress
- End address- Returns:
- List of cell addresses
- Throws:
FormatException
- Throws a FormatException if a part of the passed addresses is malformedRangeException
- Throws a RangeException if the value of one passed address is out of range (A-XFD and 1 to 1048576)
-
resolveCellAddress
Gets the address of a cell by the column and row number (zero based)- Parameters:
column
- Column address of the cell (zero-based)row
- Row address of the cell (zero-based)- Returns:
- Cell Address as string in the format A1 - XFD1048576
- Throws:
RangeException
- Throws a RangeException if the start or end address was out of range
-
resolveCellAddress
Gets the address of a cell by the column and row number (zero based)- Parameters:
column
- Column address of the cell (zero-based)row
- Row address of the cell (zero-based)type
- Referencing type of the address- Returns:
- Cell Address as string in the format A1 - XFD1048576. Depending on the type, Addresses like '$A55', 'B$2' or '$A$5' are possible outputs
- Throws:
RangeException
- Throws a RangeException if the start or end address was out of range
-
resolveCellCoordinate
Gets the column and row number (zero based) of a cell by the address- Parameters:
address
- Address as string in the format A1 - XFD1048576. '$' signs indicating fixed rows and / or columns are considered- Returns:
- Address object of the passed string
- Throws:
FormatException
- Throws a FormatException if the passed address is malformedRangeException
- Throws a RangeException if the value of the passed address is out of range (A-XFD and 1 to 1048576)
-
resolveCellRange
Resolves a cell range from the format like A1:B3 or AAD556:AAD1000- Parameters:
range
- Range to process- Returns:
- Range object of the passed string range
- Throws:
FormatException
- Thrown if the passed range is malformed
-
resolveColumn
Gets the column number from the column address (A - XFD)- Parameters:
columnAddress
- Column address (A - XFD)- Returns:
- Column number (zero-based)
- Throws:
RangeException
- Thrown if the column is out of range
-
resolveColumnAddress
Gets the column address (A - XFD)- Parameters:
columnNumber
- Column number (zero-based)- Returns:
- Column address (A - XFD)
- Throws:
RangeException
- Thrown if the passed column number is out of range
-
getAddressScope
Gets the scope of the passed address (string expression). Scope means either single cell address or range- Parameters:
addressExpression
- Address expression- Returns:
- Scope of the address expression
-