Interface StatisticAccumulator<T extends StatisticResult>
-
- Type Parameters:
T
-StatisticResult
being accumulated.
- All Known Implementing Classes:
GeometricMean
,IntMax
,IntMean
,IntMin
,IntStandardDeviation
,IntSum
,IntSumOfSquares
,IntVariance
,Kurtosis
,LongMax
,LongMean
,LongMin
,LongStandardDeviation
,LongSum
,LongSumOfSquares
,LongVariance
,Max
,Mean
,Min
,Product
,Skewness
,StandardDeviation
,Sum
,SumOfLogs
,SumOfSquares
,Variance
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface StatisticAccumulator<T extends StatisticResult>
A mutable result container that accumulates aStatisticResult
.- Since:
- 1.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
combine(T other)
Combines the state of theother
statistic into this one.
-