Interface Stats
- All Known Implementing Classes:
StatsImpl
@Internal
@Immutable
public interface Stats
A snapshot of calculated statistics.
-
Method Summary
Modifier and TypeMethodDescriptiondouble
Average of accumulated values.long
getCount()
Number of accumulated values.double
getMax()
Maximum from accumulated values.double
getMin()
Minimum from accumulated values.Returns an unmodifiable map, that contains percentiles and corresponding values of accumulated data.double
Returns standard deviation of accumulated values.
-
Method Details
-
getCount
long getCount()Number of accumulated values. -
getMin
double getMin()Minimum from accumulated values. -
getMax
double getMax()Maximum from accumulated values. -
getAverage
double getAverage()Average of accumulated values. -
getStdDeviation
double getStdDeviation()Returns standard deviation of accumulated values. -
getPercentiles
Returns an unmodifiable map, that contains percentiles and corresponding values of accumulated data.
-