Interface LongStats


  • public interface LongStats
    • Method Detail

      • getCount

        default int getCount()
        Returns the count.
        Returns:
        the count.
      • getLongCount

        long getLongCount()
      • getAverage

        double getAverage()
        Returns the average.
        Returns:
        the average or NaN if there is no data.
      • getStandardDeviation

        double getStandardDeviation()
        Returns the standard deviation.
        Returns:
        the standard deviation or NaN if there is no data.
      • getMinimum

        java.lang.Long getMinimum()
        Returns the minimum.
        Returns:
        the minimum or null if there is no data.
      • getMaximum

        java.lang.Long getMaximum()
        Returns the maximum value.
        Returns:
        the maximum value or null if there is no data.
      • get50Pct

        java.lang.Long get50Pct()
        Returns the 50th percentile value.
        Returns:
        the 50th percentile value or null if there is no data.
      • get90Pct

        java.lang.Long get90Pct()
        Returns the 90th percentile value.
        Returns:
        the 90th percentile value or null if there is no data.
      • get95Pct

        java.lang.Long get95Pct()
        Returns the 95th percentile value.
        Returns:
        the 95th percentile value or null if there is no data.
      • get99Pct

        java.lang.Long get99Pct()
        Returns the 99th percentile value.
        Returns:
        the 99th percentile value or null if there is no data.
      • get99_9Pct

        java.lang.Long get99_9Pct()
        Returns the 99.9th percentile value.
        Returns:
        the 99.9th percentile value or null if there is no data.