ehcache

Uses of Interface
net.sf.ehcache.search.Query

Packages that use Query
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.constructs The constructs package builds on top of the core ehcache classes to create implementations for common caching patterns. 
net.sf.ehcache.constructs.classloader ClassLoader contstructs package 
net.sf.ehcache.search This package contains classes for ehcache core search API. 
net.sf.ehcache.search.query This package contains the QueryMangerBuilder and the QueryManager interface to support BMSQL. 
 

Uses of Query in net.sf.ehcache
 

Methods in net.sf.ehcache that return Query
 Query Ehcache.createQuery()
          Create a new query builder for this cache
 Query Cache.createQuery()
          Create a new query builder for this cache
 

Uses of Query in net.sf.ehcache.constructs
 

Methods in net.sf.ehcache.constructs that return Query
 Query EhcacheDecoratorAdapter.createQuery()
          Create a new query builder for this cache
 

Uses of Query in net.sf.ehcache.constructs.classloader
 

Methods in net.sf.ehcache.constructs.classloader that return Query
 Query ClassLoaderAwareCache.createQuery()
          Create a new query builder for this cache
 

Uses of Query in net.sf.ehcache.search
 

Methods in net.sf.ehcache.search that return Query
 Query Query.addCriteria(Criteria criteria)
          Adds a criteria to the query
 Query Query.addGroupBy(Attribute<?>... attribute)
          Group result set by unique value(s) of specified attribute(s).
 Query Query.addOrderBy(Attribute<?> attribute, Direction direction)
          Request result set ordering by the given attribute and direction.
 Query Query.end()
          Optional method for terminating query creation.
 Query Query.includeAggregator(Aggregator... aggregators)
          Request this query to aggregate the results by the given Aggregator(s)

This method may be called multiple times to request multiple aggregations

 Query Query.includeAttribute(Attribute<?>... attributes)
          Request that the given attribute(s) should be present in the result for this query.
 Query Query.includeKeys()
          Request that the key object be present in the results.
 Query Query.includeValues()
          Request that the value object be present in the results.
 Query Query.maxResults(int maxResults)
          Restrict the number of results returned from the search.
 

Uses of Query in net.sf.ehcache.search.query
 

Methods in net.sf.ehcache.search.query that return Query
 Query QueryManager.createQuery(String statement)
          Parses a String statement expressing an Ehcache Search query and returns a Query object for the cache specified in the statement.
 


ehcache

Copyright 2001-2017, Terracotta, Inc.