Uses of Class
com.google.visualization.datasource.query.QueryFilter

Packages that use QueryFilter
com.google.visualization.datasource.query   
 

Uses of QueryFilter in com.google.visualization.datasource.query
 

Subclasses of QueryFilter in com.google.visualization.datasource.query
 class ColumnColumnFilter
          A filter that compares two column values.
 class ColumnIsNullFilter
          A filter that matches null values.
 class ColumnValueFilter
          A filter that compares a column value to a constant value.
 class ComparisonFilter
          A filter that decides upon a row by comparing two values.
 class CompoundFilter
          A compound filter.
 class NegationFilter
          A negation filter.
 

Methods in com.google.visualization.datasource.query that return QueryFilter
 QueryFilter Query.getFilter()
          Returns the required filter of this query.
 QueryFilter NegationFilter.getSubFilter()
          Returns the sub-filter associated with this NegationFilter.
 

Methods in com.google.visualization.datasource.query that return types with arguments of type QueryFilter
 java.util.List<QueryFilter> CompoundFilter.getSubFilters()
          Returns the list of sub-filters associated with this CompoundFilter.
 

Methods in com.google.visualization.datasource.query with parameters of type QueryFilter
 void Query.setFilter(QueryFilter filter)
          Set the required filter of this query.
 

Constructors in com.google.visualization.datasource.query with parameters of type QueryFilter
NegationFilter(QueryFilter subFilter)
          Constructs a negation filter, with the given sub-filter.
 

Constructor parameters in com.google.visualization.datasource.query with type arguments of type QueryFilter
CompoundFilter(CompoundFilter.LogicalOperator operator, java.util.List<QueryFilter> subFilters)
          Constructs a compound filter of the given type, with the given sub-filters.
 



Copyright © 2009 Google. All Rights Reserved.