Interface IAggregatorBucket<G,V extends IAggregatorDataPoint>
-
- All Known Implementing Classes:
AbstractSumAggregatorBucket,SumByDateAggregatorBucket,SumByDoubleAggregatorBucket,SumByLongAggregatorBucket,SumByStringAggregatorBucket
public interface IAggregatorBucket<G,V extends IAggregatorDataPoint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GgetGroupingValue()Get the grouping or category value.VgetValue(String p_strRow)Get a row value from this bucket.List<V>getValues()Get a list of the row values in this bucket.booleanhasValue(String p_strRow)Check if there exists a value for the given row.
-
-
-
Method Detail
-
getGroupingValue
G getGroupingValue()
Get the grouping or category value.- Returns:
- The grouping or category value.
-
getValues
List<V> getValues()
Get a list of the row values in this bucket.- Returns:
- The list of rows.
-
hasValue
boolean hasValue(String p_strRow)
Check if there exists a value for the given row.- Parameters:
p_strRow- The name of the row.- Returns:
trueif there exists a value for the given row, orfalseotherwise.
-
-