Interface Stats

  • All Known Implementing Classes:
    StatsImpl

    @Internal
    @Immutable
    public interface Stats
    A snapshot of calculated statistics.
    • Method Detail

      • getCount

        long getCount()
        Number of accumulated values.
      • getMin

        double getMin()
        Minimum from accumulated values.
      • getMax

        double getMax()
        Maximum from accumulated values.
      • getAverage

        double getAverage()
        Average of accumulated values.
      • getStdDeviation

        double getStdDeviation()
        Returns standard deviation of accumulated values.
      • getPercentiles

        Map<Integer,​Double> getPercentiles()
        Returns an unmodifiable map, that contains percentiles and corresponding values of accumulated data.