Interface IAggregatorDataPoint
-
public interface IAggregatorDataPoint
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetRow()Get the row name of this data point.StringgetSingleId()Get the single unique ID associated with this data point.NumbergetValue()Get the aggregated value.booleanhasSingleId()Check if this data point has a single unique ID associated.
-
-
-
Method Detail
-
getRow
String getRow()
Get the row name of this data point.- Returns:
- The row name of this data point.
-
getValue
Number getValue()
Get the aggregated value.- Returns:
- The aggregated value.
-
hasSingleId
boolean hasSingleId()
Check if this data point has a single unique ID associated.- Returns:
trueif this data point has a single unique ID associated, orfalseotherwise.
-
getSingleId
String getSingleId()
Get the single unique ID associated with this data point.- Returns:
- The single unique ID associated with this data point.
-
-