| java.lang.Object | |
| ↳ | com.google.gdata.client.Query.CategoryFilter |
The CategoryFilter class is used to define sets of category conditions that must be met in order for an entry to match.
The CategoryFilter can contain multiple category criteria (inclusive or exclusive). If it does contain multiple categories, then the query matches if any one of the category filter criteria is met, i.e. it is a logical 'OR' of the contained category criteria. To match, an entry must contain at least one included category or must not contain at least one excluded category.
It is also possible to add multiple CategoryFilters to a Query. In this case, each individual CategoryFilter must be true for an entry to match, i.e. it is a logical 'AND' of all CategoryFilters.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| categories | List of categories that returned entries must match. | ||||||||||
| excludeCategories | List of categories that returned entries must match. | ||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates an empty category filter.
| |||||||||||
Creates a new category filter using the supplied inclusion and
exclusion lists.
| |||||||||||
Creates a simple category filter containing only a single
ICategory. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Adds a new
ICategory to the query, indicating that entries
containing the category should be considered to match. | |||||||||||
Adds a new
ICategory to the query, indicating that entries
that do not contain the category should be considered to
match. | |||||||||||
Returns a string representation for the category conditions in
the CategoryFilter, in the format used by a Query URI.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
List of categories that returned entries must match.
Creates an empty category filter.
Creates a new category filter using the supplied inclusion and exclusion lists. A null value for either is equivalent to an empty list.
| included | |
|---|---|
| excluded |
Creates a simple category filter containing only a single
ICategory.
| category | An initial category to add to the filter. |
|---|
Adds a new ICategory to the query, indicating that entries
containing the category should be considered to match.
| category | The category to add to query parameters. |
|---|
Adds a new ICategory to the query, indicating that entries
that do not contain the category should be considered to
match.
| category | The category to add to query parameters. |
|---|
Returns a string representation for the category conditions in the CategoryFilter, in the format used by a Query URI.