Interface LongStats
-
public interface LongStats
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.Longget50Pct()Returns the 50th percentile value.java.lang.Longget90Pct()Returns the 90th percentile value.java.lang.Longget95Pct()Returns the 95th percentile value.java.lang.Longget99_9Pct()Returns the 99.9th percentile value.java.lang.Longget99Pct()Returns the 99th 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.
-
get50Pct
java.lang.Long get50Pct()
Returns the 50th percentile value.- Returns:
- the 50th percentile value or
nullif there is no data.
-
get90Pct
java.lang.Long get90Pct()
Returns the 90th percentile value.- Returns:
- the 90th percentile value or
nullif there is no data.
-
get95Pct
java.lang.Long get95Pct()
Returns the 95th percentile value.- Returns:
- the 95th percentile value or
nullif there is no data.
-
get99Pct
java.lang.Long get99Pct()
Returns the 99th percentile value.- Returns:
- the 99th percentile value or
nullif there is no data.
-
get99_9Pct
java.lang.Long get99_9Pct()
Returns the 99.9th percentile value.- Returns:
- the 99.9th percentile value or
nullif there is no data.
-
-