Package com.inet.excel.parser
Class RowData.CellData
java.lang.Object
com.inet.excel.parser.RowData.CellData
- Enclosing class:
- RowData
Container for data of single cell.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetR()Returns reference to the location of this cell.getS()Returns index of this cell's style.getT()Returns enumeration representing this cell's data type.getV()Returns this cell's value.voidSets reference to the location of this cell.voidSets index of this cell's style.voidSets enumeration representing this cell's data type.voidSets this cell's value.
-
Constructor Details
-
CellData
public CellData()
-
-
Method Details
-
getR
Returns reference to the location of this cell. For example "A1".- Returns:
- reference to the location of this cell.
-
setR
Sets reference to the location of this cell.- Parameters:
r- reference to the location of this cell. For example "A1".
-
getS
Returns index of this cell's style. For example "1".- Returns:
- index of this cell's style.
-
setS
Sets index of this cell's style.- Parameters:
s- index of this cell's style. For example "1".
-
getT
Returns enumeration representing this cell's data type. For example "s" for shared string.- Returns:
- enumeration representing this cell's data type.
-
setT
Sets enumeration representing this cell's data type.- Parameters:
t- enumeration representing this cell's data type. For example "s" for shared string.
-
getV
Returns this cell's value.- Returns:
- this cell's value.
-
setV
Sets this cell's value.- Parameters:
v- this cell's value.
-