Interface LongStatsLowQuantile
-
- All Known Implementing Classes:
LongStatsLowQuantileImpl
public interface LongStatsLowQuantile
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.Longget01Pct()Returns the 0.1th percentile value.java.lang.Longget10Pct()Returns the 10th percentile value.java.lang.Longget1Pct()Returns the 1th percentile value.java.lang.Longget50Pct()Returns the 50th percentile value.java.lang.Longget5Pct()Returns the 5th percentile value.doublegetAverage()Returns the average.default intgetCount()Returns the count.longgetLongCount()java.lang.LonggetMaximum()Returns the maximum value.java.lang.LonggetMinimum()Returns the minimum.doublegetStandardDeviation()Returns the standard deviation.
-
-
-
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
NaNif there is no data.
-
getStandardDeviation
double getStandardDeviation()
Returns the standard deviation.- Returns:
- the standard deviation or
NaNif there is no data.
-
getMinimum
java.lang.Long getMinimum()
Returns the minimum.- Returns:
- the minimum or
nullif there is no data.
-
getMaximum
java.lang.Long getMaximum()
Returns the maximum value.- Returns:
- the maximum value or
nullif there is no data.
-
get01Pct
java.lang.Long get01Pct()
Returns the 0.1th percentile value.- Returns:
- the 0.1th percentile value or
nullif there is no data.
-
get1Pct
java.lang.Long get1Pct()
Returns the 1th percentile value.- Returns:
- the 1th percentile value or
nullif there is no data.
-
get5Pct
java.lang.Long get5Pct()
Returns the 5th percentile value.- Returns:
- the 5th percentile value or
nullif there is no data.
-
get10Pct
java.lang.Long get10Pct()
Returns the 10th percentile value.- Returns:
- the 10th percentile value or
nullif there is no data.
-
get50Pct
java.lang.Long get50Pct()
Returns the 50th percentile value.- Returns:
- the 50th percentile value or
nullif there is no data.
-
-