Interface LongStatsLowQuantile

    • 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.
      • get01Pct

        java.lang.Long get01Pct()
        Returns the 0.1th percentile value.
        Returns:
        the 0.1th percentile value or null if there is no data.
      • get1Pct

        java.lang.Long get1Pct()
        Returns the 1th percentile value.
        Returns:
        the 1th percentile value or null if there is no data.
      • get5Pct

        java.lang.Long get5Pct()
        Returns the 5th percentile value.
        Returns:
        the 5th percentile value or null if there is no data.
      • get10Pct

        java.lang.Long get10Pct()
        Returns the 10th percentile value.
        Returns:
        the 10th percentile 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.