Function's used by aggregators
defined in org.apache.commons.functor.aggregator.See: Description
| Class | Description |
|---|---|
| DoubleMaxAggregatorBinaryFunction |
Aggregation function to be used with subclasses of
AbstractNoStoreAggregator which
finds the maximum of 2 double(s). |
| DoubleMaxAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which finds the maximum number in a list. |
| DoubleMeanValueAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which computes the arithmetic mean of all the numbers in the list. |
| DoubleMedianValueAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which computes the median
of all the numbers in the list. |
| DoublePercentileAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which retrieves the percentile value for a
given percentile. |
| DoubleSumAggregatorBinaryFunction |
Aggregator function to be used with subclasses of
AbstractNoStoreAggregator which
sums up the 2 given numbers (hence the "Binary" in the name!). |
| DoubleSumAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which sums up all the numbers in the list. |
| IntegerCountAggregatorBinaryFunction |
Aggregator function to be used with subclasses of
AbstractNoStoreAggregator which
simply increments the first argument by 1 and returns it. |
| IntegerMaxAggregatorBinaryFunction |
Aggregation function to be used with subclasses of
AbstractNoStoreAggregator which
finds the maximum of 2 ints. |
| IntegerMaxAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which finds the maximum number in a list. |
| IntegerMeanValueAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which computes the arithmetic mean of all the numbers in the list. |
| IntegerMedianValueAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which computes the median
of all the numbers in the list. |
| IntegerPercentileAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which retrieves the percentile value for a
given percentile. |
| IntegerSumAggregatorBinaryFunction |
Aggregator function to be used with subclasses of
AbstractNoStoreAggregator which
sums up the 2 given numbers (hence the "Binary" in the name!). |
| IntegerSumAggregatorFunction |
Aggregator function to be used with subclasses of
AbstractListBackedAggregator
which sums up all the numbers in the list. |
This package contains Function's used by aggregators
defined in org.apache.commons.functor.aggregator.
These will normally be passed as parameters in constructors to classes
such as AbstractListBackedAggregator
to allow for customization of aggregation services.
Copyright © 2003–2014 The Apache Software Foundation. All rights reserved.