| java.lang.Object | ||
| ↳ | com.google.gdata.client.Query | |
| ↳ | com.google.gdata.client.spreadsheet.ListQuery | |
Simple class for cells-feed-specific queries.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | ORDERBY | The URI parameter for sorting options. | |||||||||
| String | ORDERBY_COLUMN | The "orderby" string for sorting by a particular column. | |||||||||
| String | ORDERBY_POSITION | The "orderby" string for sorting by position. | |||||||||
| String | REVERSE | The URI parameter for reversing sorted results. | |||||||||
| String | SPREADSHEET_QUERY | The URI parameter for structured spreadsheet queries. | |||||||||
|
[Expand]
Inherited Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.client.Query
| |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.client.Query
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a non-restrictive row-based query, given the URI of a list
feed for a particular worksheet.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Gets the sorting query parameter.
| |||||||||||
Gets the structured spreadsheet query string.
| |||||||||||
Gets whether the query should be reversed.
| |||||||||||
Sets the full-text query.
| |||||||||||
Sets the sorting parameter, which can be "position", or
"column:(column name)".
| |||||||||||
Sets whether the results should be reversed, i.e.
| |||||||||||
Sort by a specific column.
| |||||||||||
Sets the structured spreadsheet query.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.client.Query
| |||||||||||
From class
java.lang.Object
| |||||||||||
The URI parameter for sorting options.
The "orderby" string for sorting by a particular column. For instance, "column:title" would sort by the column title.
The "orderby" string for sorting by position.
The URI parameter for reversing sorted results.
The URI parameter for structured spreadsheet queries.
Constructs a non-restrictive row-based query, given the URI of a list feed for a particular worksheet.
| feedUrl | The feed's URI |
|---|
Gets the sorting query parameter.
Gets the structured spreadsheet query string.
Gets whether the query should be reversed.
Sets the full-text query. Matched entries must contain all the specified words somewhere in the input.
| query | The full-text query string such as "Sonja Georgia" |
|---|
Sets the sorting parameter, which can be "position", or "column:(column name)".
| orderby | The order-by parameter |
|---|
Sets whether the results should be reversed, i.e. descending.
| reverse | Whether to reverse results |
|---|
Sort by a specific column. Convenience method for setOrderBy("column:" + column).
| column |
|---|
Sets the structured spreadsheet query.
| query | The query such as "name = 'Sonja' and state = 'Georgia'" |
|---|