Class StatisticValue.IntervalStatistic

All Implemented Interfaces:
Serializable
Enclosing class:
StatisticValue

public static class StatisticValue.IntervalStatistic extends StatisticValue.CountStatistic
Class to represent statistic value of type interval.
See Also:
  • Constructor Details

    • IntervalStatistic

      public IntervalStatistic(String name, long count, long min, long max, long average, double sum)
  • Method Details

    • getMin

      public long getMin()
      Gets statistics minimum value.
      Returns:
      Minimum value.
    • getMax

      public long getMax()
      Gets statistics maximum value.
      Returns:
      Maximum value.
    • getAverage

      public long getAverage()
      Gets statistics average value.
      Returns:
      Average value.
    • getSum

      public double getSum()
      Gets statistics sum value.
      Returns:
      Sum value.