Uses of Interface
com.hazelcast.mapreduce.aggregation.Aggregation

Packages that use Aggregation
com.hazelcast.client.proxy This package contains client side proxy implementations of the different Hazelcast data structures and operation types 
com.hazelcast.core Provides core API interfaces/classes. 
com.hazelcast.map.impl.proxy Contains map proxy implementation and support classes. 
com.hazelcast.mapreduce.aggregation This package contains the aggregation API and the convenience helper classes to retrieve predefined aggregation implementations. 
com.hazelcast.multimap.impl Contains classes for Hazelcast MultiMap module. 
 

Uses of Aggregation in com.hazelcast.client.proxy
 

Methods in com.hazelcast.client.proxy with parameters of type Aggregation
<SuppliedValue,Result>
Result
ClientMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation)
           
<SuppliedValue,Result>
Result
ClientMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation)
           
<SuppliedValue,Result>
Result
ClientMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation, JobTracker jobTracker)
           
<SuppliedValue,Result>
Result
ClientMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation, JobTracker jobTracker)
           
 

Uses of Aggregation in com.hazelcast.core
 

Methods in com.hazelcast.core with parameters of type Aggregation
<SuppliedValue,Result>
Result
IMap.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation)
          Executes a predefined aggregation on the maps data set.
<SuppliedValue,Result>
Result
MultiMap.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation)
          Executes a predefined aggregation on the multimaps data set.
<SuppliedValue,Result>
Result
IMap.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation, JobTracker jobTracker)
          Executes a predefined aggregation on the maps data set.
<SuppliedValue,Result>
Result
MultiMap.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation, JobTracker jobTracker)
          Executes a predefined aggregation on the multimaps data set.
 

Uses of Aggregation in com.hazelcast.map.impl.proxy
 

Methods in com.hazelcast.map.impl.proxy with parameters of type Aggregation
<SuppliedValue,Result>
Result
MapProxyImpl.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation)
           
<SuppliedValue,Result>
Result
MapProxyImpl.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation, JobTracker jobTracker)
           
 

Uses of Aggregation in com.hazelcast.mapreduce.aggregation
 

Methods in com.hazelcast.mapreduce.aggregation that return Aggregation
static
<Key,Value>
Aggregation<Key,BigDecimal,BigDecimal>
Aggregations.bigDecimalAvg()
          Returns an aggregation to calculate the BigDecimal average of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,BigDecimal,BigDecimal>
Aggregations.bigDecimalMax()
          Returns an aggregation to find the BigDecimal maximum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,BigDecimal,BigDecimal>
Aggregations.bigDecimalMin()
          Returns an aggregation to find the BigDecimal minimum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,BigDecimal,BigDecimal>
Aggregations.bigDecimalSum()
          Returns an aggregation to calculate the BigDecimal sum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,BigInteger,BigInteger>
Aggregations.bigIntegerAvg()
          Returns an aggregation to calculate the BigInteger average of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,BigInteger,BigInteger>
Aggregations.bigIntegerMax()
          Returns an aggregation to find the BigInteger maximum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,BigInteger,BigInteger>
Aggregations.bigIntegerMin()
          Returns an aggregation to find the BigInteger minimum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,BigInteger,BigInteger>
Aggregations.bigIntegerSum()
          Returns an aggregation to calculate the BigInteger sum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Comparable,Comparable>
Aggregations.comparableMax()
          Returns an aggregation to find the maximum value of all supplied Comparable implementing values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Comparable,Comparable>
Aggregations.comparableMin()
          Returns an aggregation to find the minimum value of all supplied Comparable implementing values.
This aggregation is similar to
static
<Key> Aggregation<Key,Object,Long>
Aggregations.count()
          Returns an aggregation for counting all supplied values.
This aggregation is similar to
static
<Key,Value,DistinctType>
Aggregation<Key,Value,Set<DistinctType>>
Aggregations.distinctValues()
          Returns an aggregation for selecting all distinct values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Double,Double>
Aggregations.doubleAvg()
          Returns an aggregation to calculate the double average of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Double,Double>
Aggregations.doubleMax()
          Returns an aggregation to find the double maximum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Double,Double>
Aggregations.doubleMin()
          Returns an aggregation to find the double minimum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Double,Double>
Aggregations.doubleSum()
          Returns an aggregation to calculate the double sum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Value,Integer>
Aggregations.integerAvg()
          Returns an aggregation to calculate the integer average of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Integer,Integer>
Aggregations.integerMax()
          Returns an aggregation to find the integer maximum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Integer,Integer>
Aggregations.integerMin()
          Returns an aggregation to find the integer minimum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Integer,Integer>
Aggregations.integerSum()
          Returns an aggregation to calculate the integer sum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Long,Long>
Aggregations.longAvg()
          Returns an aggregation to calculate the long average of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Long,Long>
Aggregations.longMax()
          Returns an aggregation to find the long maximum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Long,Long>
Aggregations.longMin()
          Returns an aggregation to find the long minimum of all supplied values.
This aggregation is similar to
static
<Key,Value>
Aggregation<Key,Long,Long>
Aggregations.longSum()
          Returns an aggregation to calculate the long sum of all supplied values.
This aggregation is similar to
 

Uses of Aggregation in com.hazelcast.multimap.impl
 

Methods in com.hazelcast.multimap.impl with parameters of type Aggregation
<SuppliedValue,Result>
Result
ObjectMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation)
           
<SuppliedValue,Result>
Result
ObjectMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier, Aggregation<K,SuppliedValue,Result> aggregation, JobTracker jobTracker)
           
 



Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.