static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.average(Remote.ToBigDecimalFunction<? super T> extractor) |
Return an aggregator that calculates an average of the BigDecimal values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.average(Remote.ToDoubleFunction<? super T> extractor) |
Return an aggregator that calculates an average of the double values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.average(Remote.ToIntFunction<? super T> extractor) |
Return an aggregator that calculates an average of the int values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.average(Remote.ToLongFunction<? super T> extractor) |
Return an aggregator that calculates an average of the long values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.average(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a average of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.average(String sMethod) |
Return an aggregator that calculates a average of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.bigDecimalAverage(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a average of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.bigDecimalAverage(String sMethod) |
Return an aggregator that calculates a average of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.bigDecimalMax(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a maximum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.bigDecimalMax(String sMethod) |
Return an aggregator that calculates a maximum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.bigDecimalMin(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a minimum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.bigDecimalMin(String sMethod) |
Return an aggregator that calculates a minimum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.bigDecimalSum(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a sum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.bigDecimalSum(String sMethod) |
Return an aggregator that calculates a sum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.comparableMax(ValueExtractor<? super T,? extends R> extractor) |
Return an aggregator that calculates a maximum of the Comparable values
extracted from a set of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.comparableMax(ValueExtractor<? super T,? extends R> extractor,
Comparator<? super R> comparator) |
Return an aggregator that calculates a maximum of the values extracted from a set
of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.comparableMax(String sMethod) |
Return an aggregator that calculates a maximum of the Comparable values
extracted from a set of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.comparableMax(String sMethod,
Comparator<? super R> comparator) |
Return an aggregator that calculates a maximum of the values extracted from a set
of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.comparableMin(ValueExtractor<? super T,? extends R> extractor) |
Return an aggregator that calculates a minimum of the Comparable values
extracted from a set of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.comparableMin(ValueExtractor<? super T,? extends R> extractor,
Comparator<? super R> comparator) |
Return an aggregator that calculates a minimum of the values extracted from a set
of entries in a Map.
|
static <K,V,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.comparableMin(String sMethod) |
Return an aggregator that calculates a minimum of the Comparable values
extracted from a set of entries in a Map.
|
static <K,V,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.comparableMin(String sMethod,
Comparator<? super R> comparator) |
Return an aggregator that calculates a minimum of the values extracted from a set
of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,List<?>> |
Aggregators.composite(InvocableMap.EntryAggregator... aAggregator) |
Return an aggregator that calculates the the combined set of results from a number of aggregators.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,Integer,Integer> |
Aggregators.count() |
Return an aggregator that calculates the count of the entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,Collection<V>> |
Aggregators.distinctValues() |
Return an aggregator that calculates the set of distinct values from the entries in a Map.
|
static <K,V,T,R> InvocableMap.StreamingAggregator<K,V,?,Collection<R>> |
Aggregators.distinctValues(ValueExtractor<? super T,? extends R> extractor) |
Return an aggregator that calculates the set of distinct values extracted from the entries in a Map.
|
static <K,V,R> InvocableMap.StreamingAggregator<K,V,?,Collection<R>> |
Aggregators.distinctValues(String sMethod) |
Return an aggregator that calculates the set of distinct values extracted from the entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.doubleMax(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a maximum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.doubleMax(String sMethod) |
Return an aggregator that calculates a maximum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.doubleMin(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a minimum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.doubleMin(String sMethod) |
Return an aggregator that calculates a minimum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.doubleSum(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a sum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.doubleSum(String sMethod) |
Return an aggregator that calculates a sum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,E,R> InvocableMap.StreamingAggregator<K,V,Map<E,Object>,Map<E,R>> |
Aggregators.grouping(InvocableMap.EntryAggregator<K,V,R> aggregator,
Filter filter,
String... asNames) |
|
static <K,V,E,R> InvocableMap.StreamingAggregator<K,V,Map<E,Object>,Map<E,R>> |
Aggregators.grouping(InvocableMap.EntryAggregator<K,V,R> aggregator,
String... asNames) |
|
static <K,V,T,E,R> InvocableMap.StreamingAggregator<K,V,Map<E,Object>,Map<E,R>> |
Aggregators.grouping(ValueExtractor<? super T,? extends E> extractor,
InvocableMap.EntryAggregator<? super K,? super V,R> aggregator,
Filter filter) |
|
static <K,V,T,E,R> InvocableMap.StreamingAggregator<K,V,Map<E,Object>,Map<E,R>> |
Aggregators.grouping(ValueExtractor<? super T,? extends E> extractor,
InvocableMap.EntryAggregator<K,V,R> aggregator) |
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.longMax(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a maximum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.longMax(String sMethod) |
Return an aggregator that calculates a maximum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.longMin(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a minimum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.longMin(String sMethod) |
Return an aggregator that calculates a minimum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.longSum(ValueExtractor<? super T,? extends Number> extractor) |
Return an aggregator that calculates a sum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.longSum(String sMethod) |
Return an aggregator that calculates a sum of the numeric values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.max(Remote.ToBigDecimalFunction<? super T> extractor) |
Return an aggregator that calculates a maximum of the BigDecimal values extracted
from a set of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.max(Remote.ToComparableFunction<? super T,? extends R> extractor) |
Return an aggregator that calculates a maximum of the Comparable values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.max(Remote.ToDoubleFunction<? super T> extractor) |
Return an aggregator that calculates a maximum of the double values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.max(Remote.ToIntFunction<? super T> extractor) |
Return an aggregator that calculates a maximum of the int values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.max(Remote.ToLongFunction<? super T> extractor) |
Return an aggregator that calculates a maximum of the long values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.min(Remote.ToBigDecimalFunction<? super T> extractor) |
Return an aggregator that calculates a minimum of the BigDecimal values extracted
from a set of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R> |
Aggregators.min(Remote.ToComparableFunction<? super T,? extends R> extractor) |
Return an aggregator that calculates a minimum of the Comparable values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.min(Remote.ToDoubleFunction<? super T> extractor) |
Return an aggregator that calculates a minimum of the double values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.min(Remote.ToIntFunction<? super T> extractor) |
Return an aggregator that calculates a minimum of the int values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.min(Remote.ToLongFunction<? super T> extractor) |
Return an aggregator that calculates a minimum of the long values extracted
from a set of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,Map<K,R>> |
Aggregators.reduce(ValueExtractor<? super T,? extends R> extractor) |
Return an aggregator that will return the extracted value for each entry in the map.
|
static <K,V,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,Map<K,R>> |
Aggregators.reduce(String sMethod) |
Return an aggregator that will return the extracted value for each entry in the map.
|
static <K,V,P,R> InvocableMap.StreamingAggregator<K,V,P,R> |
Aggregators.script(String sLanguage,
String sName,
int characteristics,
Object... aoArgs) |
Return an aggregator that is implemented in a script using the specified
language.
|
static <K,V,P,R> InvocableMap.StreamingAggregator<K,V,P,R> |
Aggregators.script(String sLanguage,
String sName,
Object... aoArgs) |
Return an aggregator that is implemented in a script using the specified
language.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,BigDecimal> |
Aggregators.sum(Remote.ToBigDecimalFunction<? super T> extractor) |
Return an aggregator that calculates a sum of the BigDecimal values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Double> |
Aggregators.sum(Remote.ToDoubleFunction<? super T> extractor) |
Return an aggregator that calculates a sum of the double values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.sum(Remote.ToIntFunction<? super T> extractor) |
Return an aggregator that calculates a sum of the int values extracted
from a set of entries in a Map.
|
static <K,V,T> InvocableMap.StreamingAggregator<K,V,?,Long> |
Aggregators.sum(Remote.ToLongFunction<? super T> extractor) |
Return an aggregator that calculates a sum of the long values extracted
from a set of entries in a Map.
|
InvocableMap.StreamingAggregator<K,V,P,R> |
InvocableMap.StreamingAggregator.supply() |
Create a new instance of this aggregator.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R[]> |
Aggregators.topN(ValueExtractor<? super T,? extends R> extractor,
int cResults) |
Return an aggregator that calculates the top n of the Comparable values
extracted from a set of entries in a Map.
|
static <K,V,T,R> InvocableMap.StreamingAggregator<K,V,?,R[]> |
Aggregators.topN(ValueExtractor<? super T,? extends R> extractor,
Comparator<? super R> comparator,
int cResults) |
Return an aggregator that calculates the top n of the values extracted from a set
of entries in a Map.
|
static <K,V,T,R extends Comparable<? super R>> InvocableMap.StreamingAggregator<K,V,?,R[]> |
Aggregators.topN(String sMethod,
int cResults) |
Return an aggregator that calculates the top n of the Comparable values
extracted from a set of entries in a Map.
|
static <K,V,T,R> InvocableMap.StreamingAggregator<K,V,?,R[]> |
Aggregators.topN(String sMethod,
Comparator<? super R> comparator,
int cResults) |
Return an aggregator that calculates the top n of the values extracted from a set
of entries in a Map.
|