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.Long
get01Pct()
Returns the 0.1th percentile value.java.lang.Long
get10Pct()
Returns the 10th percentile value.java.lang.Long
get1Pct()
Returns the 1th percentile value.java.lang.Long
get50Pct()
Returns the 50th percentile value.java.lang.Long
get5Pct()
Returns the 5th percentile value.double
getAverage()
Returns the average.default int
getCount()
Returns the count.long
getLongCount()
java.lang.Long
getMaximum()
Returns the maximum value.java.lang.Long
getMinimum()
Returns the minimum.double
getStandardDeviation()
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
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.
-
-