Class NumberByDoubleAggregator
- java.lang.Object
-
- de.uplanet.lucy.server.auxiliaries.chart.AbstractNumberAggregator<Double,SumByDoubleAggregatorBucket>
-
- de.uplanet.lucy.server.auxiliaries.chart.NumberByDoubleAggregator
-
public final class NumberByDoubleAggregator extends AbstractNumberAggregator<Double,SumByDoubleAggregatorBucket>
This class can be used to aggregate numbers while grouping them by numerical values.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
NumberByDoubleAggregator.SortableSumByDoubleAggregatorBucketList
-
Constructor Summary
Constructors Constructor Description NumberByDoubleAggregator(Comparator<? super Double> p_comparator)
Create an aggregator for numerical values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Number p_num, String p_strRow, Number p_value, String p_strSingleId)
Add an observation.NumberByDoubleAggregator.SortableSumByDoubleAggregatorBucketList
getAggregatedValues()
Get an ascendingly ordered list of aggregated values.-
Methods inherited from class de.uplanet.lucy.server.auxiliaries.chart.AbstractNumberAggregator
getRowComparator, isGroupValueWasNull, isIgnoreIfGroupingValueIsNull, isIgnoreIfRowValueIsNull, isIgnoreIfValueIsNull, isMapNullValueToDefault, isRowValueWasNull, isValueWasNull, setCaseInsensitiveRowComparator, setCaseSensitiveRowComparator, setIgnoreIfGroupingValueIsNull, setIgnoreIfRowValueIsNull, setIgnoreIfValueIsNull, setMapNullValueToDefault, setRowComparator
-
-
-
-
Constructor Detail
-
NumberByDoubleAggregator
public NumberByDoubleAggregator(Comparator<? super Double> p_comparator)
Create an aggregator for numerical values.If a comparator is given "category" values for which this comparator returns a value of zero are considered equal.
- Parameters:
p_comparator
- A comparator fordouble
values, ornull
.
-
-
Method Detail
-
getAggregatedValues
public NumberByDoubleAggregator.SortableSumByDoubleAggregatorBucketList getAggregatedValues()
Get an ascendingly ordered list of aggregated values.- Specified by:
getAggregatedValues
in classAbstractNumberAggregator<Double,SumByDoubleAggregatorBucket>
- Returns:
- The list of aggregated values.
-
add
public void add(Number p_num, String p_strRow, Number p_value, String p_strSingleId)
Add an observation.- Parameters:
p_num
- The numeric "category" value.p_strRow
- The row value.p_value
- The value.p_strSingleId
- A an identifier that is being stored as long as there is exactly one such identifier for a group (normally a record ID).
-
-