| java.lang.Object | ||
| ↳ | com.google.gdata.client.Query | |
| ↳ | com.google.gdata.client.spreadsheet.CellQuery | |
Simple class for cells-feed-specific queries. The main features include minimum and maximum row and column numbers. For instance, you could select only cells in the range of rows 2 through 5 and columns 3 and beyond. This would correspond to: query.setMinimumRow(2); query.setMaximumRow(5); query.setMinimumCol(3);
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | MAXIMUM_COL | String property for maximum column number. | |||||||||
| String | MAXIMUM_ROW | String property for maximum row number. | |||||||||
| String | MINIMUM_COL | String property for minimum column number. | |||||||||
| String | MINIMUM_ROW | String property for minimum row number. | |||||||||
| String | RANGE | String property for a cell range. | |||||||||
| String | RETURN_EMPTY | String porperty for flag to return empty cells. | |||||||||
|
[Expand]
Inherited Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.client.Query
| |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.client.Query
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an object representing a to-be-executed query on cells.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Gets the largest column number possible in the cells to be returned.
| |||||||||||
Gets the largest row number possible in the cells to be returned.
| |||||||||||
Gets the smallest column number possible in the cells to be returned.
| |||||||||||
Gets the smallest row number possible in the cells to be returned.
| |||||||||||
Gets the range of the cells to be returned.
| |||||||||||
Gets whether the empty cells should be returned.
| |||||||||||
Sets the maximum column number of cells that are returned.
| |||||||||||
Sets the maximum row number of cells that are returned.
| |||||||||||
Sets the minimum column number of cells that are returned.
| |||||||||||
Sets the minimum row number of cells that are returned.
| |||||||||||
Sets the range for the cells to return.
| |||||||||||
Sets whether to return empty cells.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.client.Query
| |||||||||||
From class
java.lang.Object
| |||||||||||
String property for maximum column number.
String property for maximum row number.
String property for minimum column number.
String property for minimum row number.
String property for a cell range.
String porperty for flag to return empty cells.
Constructs an object representing a to-be-executed query on cells.
| feedUrl | The URI of the particular worksheet's cells feed |
|---|
Gets the largest column number possible in the cells to be returned.
Gets the largest row number possible in the cells to be returned.
Gets the smallest column number possible in the cells to be returned.
Gets the smallest row number possible in the cells to be returned.
Gets the range of the cells to be returned.
Gets whether the empty cells should be returned.
Sets the maximum column number of cells that are returned.
| value | The column number, of null if there is no maximum |
|---|
Sets the maximum row number of cells that are returned.
| value | The row number, or null if there is no maximum |
|---|
Sets the minimum column number of cells that are returned.
| value | The column numer, or null if there is no minimum |
|---|
Sets the minimum row number of cells that are returned.
| value | The row number, or null if there is no minimum |
|---|
Sets the range for the cells to return.
| value | The range in A1 or R1C1 for the cells to be returned. |
|---|
Sets whether to return empty cells.
| value | If true, then empty cells will be returned in the feed. |
|---|