| com.google.gdata.client.GDataProtocol.Query |
The Query interface extends the basic set of parameter names with the common set that are used for GData feed queries.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | AUTHOR | The AUTHOR query parameter is used to request an author query. | |||||||||
| String | CATEGORY | The CATEGORY query parameter is an alternative syntax that can be used to specify a category query that is used to match returned entries. | |||||||||
| String | FULL_TEXT | The FULL_TEXT query parameter used to request a full text query. | |||||||||
| String | MAX_RESULTS | The MAX_RESULTS query parameter is used to specify the maximum number of matches that should be returned from a query request. | |||||||||
| String | PUBLISHED_MAX | The PUBLISHED_MAX query parameter is used to request that all entries have a published value less than the parameter value. | |||||||||
| String | PUBLISHED_MIN | The PUBLISHED_MIN query parameter is used to request that all entries have a published value greater than or equal to the parameter value. | |||||||||
| String | START_INDEX | The START_INDEX query parameter is used to request that the returned entries start at the specified index. | |||||||||
| String | START_TOKEN | The START_TOKEN query parameter is used to request a specific page of a feed. | |||||||||
| String | UPDATED_MAX | The UPDATED_MAX query parameter is used to request that all entries have an updated value less than the parameter value. | |||||||||
| String | UPDATED_MIN | The UPDATED_MIN query parameter is used to request that all entries have an updated value greater than or equal to the parameter value. | |||||||||
|
[Expand]
Inherited Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
com.google.gdata.client.GDataProtocol.Parameter
| |||||||||||
The AUTHOR query parameter is used to request an author query.
The CATEGORY query parameter is an alternative syntax that can be used to specify a category query that is used to match returned entries. The value is a comma-separated list of category query expressions that all must match.
The FULL_TEXT query parameter used to request a full text query.
The MAX_RESULTS query parameter is used to specify the maximum number of matches that should be returned from a query request.
The PUBLISHED_MAX query parameter is used to request that all entries have a published value less than the parameter value.
The PUBLISHED_MIN query parameter is used to request that all entries have a published value greater than or equal to the parameter value.
The START_INDEX query parameter is used to request that the returned entries start at the specified index. The parameter value is 1-based.
The START_TOKEN query parameter is used to request a specific page of a feed. This is an alternative to START_INDEX, which allows accessing the next/previous page of a feed but does not allow accessing arbitrary pages. Its content is an opaque string which was generated by the server to be included in a future request.
It is illegal to specify both START_TOKEN and START_INDEX for one request.
The UPDATED_MAX query parameter is used to request that all entries have an updated value less than the parameter value.
The UPDATED_MIN query parameter is used to request that all entries have an updated value greater than or equal to the parameter value.