Interface IAggregatorDataPoint
-
public interface IAggregatorDataPoint
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getRow()
Get the row name of this data point.String
getSingleId()
Get the single unique ID associated with this data point.Number
getValue()
Get the aggregated value.boolean
hasSingleId()
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:
true
if this data point has a single unique ID associated, orfalse
otherwise.
-
getSingleId
String getSingleId()
Get the single unique ID associated with this data point.- Returns:
- The single unique ID associated with this data point.
-
-