java.lang.Object | |
↳ | org.mule.module.google.spreadsheet.model.Cell |
This class represents a cell in a spreadsheet.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
columnNumber | The number of the represented column. | ||||||||||
evaluatedValue | The evaluated cell value. | ||||||||||
rowNumber | The number of the row it belongs to. | ||||||||||
valueOrFormula | The literal value or formula that was introduced into the cell. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
A cell is considered lower than another if it's column number is lower.
| |||||||||||
Two cells are equl if the belong to the same row and column
| |||||||||||
column number times row number times eleven
| |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
The number of the represented column. It's a 1-based index. Defaults to zero which means that this is still unknown.
The evaluated cell value. By evaluated we mean that if the user entered a formula then the result of that evaluation is returned. If a literal value was introduced but the cell was subject to some kind of formatting, then the formatted value is returned. This is just a holder for the value, the actual formatting and evaluation happens server side at the spreadsheet's server
The number of the row it belongs to. It's a 1-based index. Defaults to zero which means that this is still unknown.
The literal value or formula that was introduced into the cell. This is the value as the user entered it. It doesn't have any formatting or evaluation (in the case of formulas)
A cell is considered lower than another if it's column number is lower.
o |
---|
Two cells are equl if the belong to the same row and column
obj |
---|
column number times row number times eleven
columnNumber |
---|
evaluatedValue |
---|
rowNumber |
---|
valueOrFormula |
---|