Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
<SuppliedValue,Result> |
ClientMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation) |
<SuppliedValue,Result> |
ClientMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation) |
<SuppliedValue,Result> |
ClientMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker) |
<SuppliedValue,Result> |
ClientMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker) |
Modifier and Type | Method and Description |
---|---|
<SuppliedValue,Result> |
IMap.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation)
Executes a predefined aggregation on the maps data set.
|
<SuppliedValue,Result> |
MultiMap.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation)
Executes a predefined aggregation on the multimaps data set.
|
<SuppliedValue,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> |
MultiMap.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker)
Executes a predefined aggregation on the multimaps data set.
|
Modifier and Type | Method and Description |
---|---|
<SuppliedValue,Result> |
MapProxyImpl.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation) |
<SuppliedValue,Result> |
MapProxyImpl.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker) |
Modifier and Type | Method and Description |
---|---|
static <Key,Value> |
Aggregations.bigDecimalAvg()
Returns an aggregation to calculate the
BigDecimal average
of all supplied values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.bigDecimalMax()
Returns an aggregation to find the
BigDecimal maximum
of all supplied values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.bigDecimalMin()
Returns an aggregation to find the
BigDecimal minimum
of all supplied values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.bigDecimalSum()
Returns an aggregation to calculate the
BigDecimal sum
of all supplied values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.bigIntegerAvg()
Returns an aggregation to calculate the
BigInteger average
of all supplied values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.bigIntegerMax()
Returns an aggregation to find the
BigInteger maximum
of all supplied values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.bigIntegerMin()
Returns an aggregation to find the
BigInteger minimum
of all supplied values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.bigIntegerSum()
Returns an aggregation to calculate the
BigInteger sum
of all supplied values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.comparableMax()
Returns an aggregation to find the maximum value of all supplied
Comparable implementing values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.comparableMin()
Returns an aggregation to find the minimum value of all supplied
Comparable implementing values.This aggregation is similar to: |
static <Key,Value> |
Aggregations.count()
Returns an aggregation for counting all supplied values.
This aggregation is similar to: |
static <Key,Value,DistinctType> |
Aggregations.distinctValues()
Returns an aggregation for selecting all distinct values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.doubleAvg()
Returns an aggregation to calculate the double average of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.doubleMax()
Returns an aggregation to find the double maximum of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.doubleMin()
Returns an aggregation to find the double minimum of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.doubleSum()
Returns an aggregation to calculate the double sum of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.integerAvg()
Returns an aggregation to calculate the integer average of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.integerMax()
Returns an aggregation to find the integer maximum of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.integerMin()
Returns an aggregation to find the integer minimum of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.integerSum()
Returns an aggregation to calculate the integer sum of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.longAvg()
Returns an aggregation to calculate the long average of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.longMax()
Returns an aggregation to find the long maximum of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.longMin()
Returns an aggregation to find the long minimum of all supplied values.
This aggregation is similar to: |
static <Key,Value> |
Aggregations.longSum()
Returns an aggregation to calculate the long sum of all supplied values.
This aggregation is similar to: |
Modifier and Type | Method and Description |
---|---|
<SuppliedValue,Result> |
ObjectMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation) |
<SuppliedValue,Result> |
ObjectMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker) |
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.