public static interface

GDataProtocol.Query

implements GDataProtocol.Parameter
com.google.gdata.client.GDataProtocol.Query

Class Overview

The Query interface extends the basic set of parameter names with the common set that are used for GData feed queries.

Summary

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

Constants

public static final String AUTHOR

The AUTHOR query parameter is used to request an author query.

Constant Value: "author"

public static final 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. The value is a comma-separated list of category query expressions that all must match.

Constant Value: "category"

public static final String FULL_TEXT

The FULL_TEXT query parameter used to request a full text query.

Constant Value: "q"

public static final 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.

Constant Value: "max-results"

public static final String PUBLISHED_MAX

The PUBLISHED_MAX query parameter is used to request that all entries have a published value less than the parameter value.

Constant Value: "published-max"

public static final 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.

Constant Value: "published-min"

public static final String START_INDEX

The START_INDEX query parameter is used to request that the returned entries start at the specified index. The parameter value is 1-based.

Constant Value: "start-index"

public static final String START_TOKEN

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.

Constant Value: "start-token"

public static final String UPDATED_MAX

The UPDATED_MAX query parameter is used to request that all entries have an updated value less than the parameter value.

Constant Value: "updated-max"

public static final 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.

Constant Value: "updated-min"