Interface IAggregatorDataPoint


public interface IAggregatorDataPoint
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the row name of this data point.
    Get the single unique ID associated with this data point.
    Get the aggregated value.
    boolean
    Check if this data point has a single unique ID associated.
  • Method Details

    • 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, or false otherwise.
    • getSingleId

      String getSingleId()
      Get the single unique ID associated with this data point.
      Returns:
      The single unique ID associated with this data point.