Package | Description |
---|---|
net.sf.ehcache |
This package contains the public API for using ehcache.
|
net.sf.ehcache.search |
This package contains classes for ehcache core search API.
|
net.sf.ehcache.search.aggregator |
This package contains classes for search aggregator functionality.
|
Modifier and Type | Method and Description |
---|---|
Query |
CacheQuery.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
|
Modifier and Type | Method and Description |
---|---|
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
|
Modifier and Type | Method and Description |
---|---|
(package private) abstract void |
Average.Engine.accept(java.lang.Number input)
Update the engine with the given value.
|
(package private) void |
Average.Engine.IntegerEngine.accept(java.lang.Number input) |
(package private) void |
Average.Engine.LongEngine.accept(java.lang.Number input) |
(package private) void |
Average.Engine.FloatEngine.accept(java.lang.Number input) |
(package private) void |
Average.Engine.DoubleEngine.accept(java.lang.Number input) |
(package private) abstract void |
Sum.Engine.accept(java.lang.Number input)
Update the engine with the given value.
|
(package private) void |
Sum.Engine.LongEngine.accept(java.lang.Number input) |
(package private) void |
Sum.Engine.FloatEngine.accept(java.lang.Number input) |
(package private) void |
Sum.Engine.DoubleEngine.accept(java.lang.Number input) |
void |
Max.accept(java.lang.Object input)
Add the given value to the aggregator function
|
void |
Average.accept(java.lang.Object input)
Add the given value to the aggregator function
|
void |
Min.accept(java.lang.Object input)
Add the given value to the aggregator function
|
void |
AggregatorInstance.accept(java.lang.Object input)
Add the given value to the aggregator function
|
void |
Count.accept(java.lang.Object input)
Add the given value to the aggregator function
|
void |
Sum.accept(java.lang.Object input)
Add the given value to the aggregator function
|