Schnittstelle IAggregatorBucket<G,V extends IAggregatorDataPoint>
- Alle bekannten Implementierungsklassen:
AbstractSumAggregatorBucket,SumByDateAggregatorBucket,SumByDoubleAggregatorBucket,SumByLongAggregatorBucket,SumByStringAggregatorBucket
public interface IAggregatorBucket<G,V extends IAggregatorDataPoint>
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungGet the grouping or category value.Get a row value from this bucket.Get a list of the row values in this bucket.booleanCheck if there exists a value for the given row.
-
Methodendetails
-
getGroupingValue
G getGroupingValue()Get the grouping or category value.- Gibt zurück:
- The grouping or category value.
-
getValues
Get a list of the row values in this bucket.- Gibt zurück:
- The list of rows.
-
hasValue
Check if there exists a value for the given row.- Parameter:
p_strRow- The name of the row.- Gibt zurück:
trueif there exists a value for the given row, orfalseotherwise.
-
getValue
Get a row value from this bucket.- Parameter:
p_strRow- The name of the row.- Gibt zurück:
- The row, or
nullif the row does not exist.
-