| java.lang.Object | |
| ↳ | com.google.gdata.data.spreadsheet.Cell |
GData schema extension describing a spreadsheet formula.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| col | The positional column number starting with 1 (-1 for unspecified). | ||||||||||
| inputValue | The formula of the cell (null if the formula is omitted). | ||||||||||
| numericValue | The calculated numeric value of this cell. | ||||||||||
| row | The positional row number starting with 1 (-1 for unspecified) | ||||||||||
| value | The evaluated value of the cell in String from (null if unspecified). | ||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Initializes to blank for XML parsing.
| |||||||||||
Initializes a cell where the column is known.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a cell for the server library; it is not appropriate for
client side use (the server may reject these cells).
| |||||||||||
Writes this cell as XML, omitting any unspecified fields.
| |||||||||||
Yields the column number starting with 1.
| |||||||||||
Returns the suggested extension description.
| |||||||||||
Gets the double-precision value.
| |||||||||||
Yields an XML handler for parsing a Cell element.
| |||||||||||
Yields the formula reference of the cell.
| |||||||||||
Gets the calculated numeric value.
| |||||||||||
Yields the positional row number starting with 1.
| |||||||||||
Yields the evaluated, formatted value of this cell.
| |||||||||||
Creates a new cell with a new input value, for the purpose of updating.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.google.gdata.data.Extension
| |||||||||||
The positional column number starting with 1 (-1 for unspecified).
The formula of the cell (null if the formula is omitted).
The calculated numeric value of this cell.
The positional row number starting with 1 (-1 for unspecified)
The evaluated value of the cell in String from (null if unspecified).
Initializes to blank for XML parsing.
Initializes a cell where the column is known.
| inRow | The row number starting with 1 (-1 for unspecified) |
|---|---|
| inCol | The column number starting with 1 (-1 for unspecified) |
| inInputValue | The formula (null for unspecified) |
Creates a cell for the server library; it is not appropriate for client side use (the server may reject these cells).
| inRow | |
|---|---|
| inCol | |
| inInputValue | |
| inCalculatedValue | |
| inValue |
Writes this cell as XML, omitting any unspecified fields.
| w | XML writer |
|---|---|
| extProfile | Extension profile |
| IOException |
|---|
Yields the column number starting with 1.
Returns the suggested extension description.
| repeats | Whether this cell might be repeated in parent context |
|---|
Gets the double-precision value.
Yields an XML handler for parsing a Cell element.
| extProfile | Extension profile |
|---|---|
| namespace | Extension namespace |
| localName | Tag name, without the namespace prefix |
| attrs | Tag attributes |
| IOException | |
|---|---|
| ParseException |
Yields the formula reference of the cell. An "=" sign signifies that there is a formula computed on the fly. Otherwise it is simply data that is entered into the sheet.
Gets the calculated numeric value.
Yields the positional row number starting with 1.
Yields the evaluated, formatted value of this cell.
Creates a new cell with a new input value, for the purpose of updating. The new cell cannot contain a calculation result value, because values cannot be updated.
| newInputValue | The new input value, starting with '=' for a formula, otherwise just a plain string |
|---|