Package com.helger.commons.statistics
Interface IMutableStatisticsHandlerSize
-
- All Superinterfaces:
IStatisticsHandler,IStatisticsHandlerNumeric,IStatisticsHandlerSize
- All Known Implementing Classes:
StatisticsHandlerSize
public interface IMutableStatisticsHandlerSize extends IStatisticsHandlerSize
Statistics handler for sizes.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddSize(long nSize)Add a new size-
Methods inherited from interface com.helger.commons.statistics.IStatisticsHandler
getInvocationCount
-
Methods inherited from interface com.helger.commons.statistics.IStatisticsHandlerNumeric
getAverage, getMax, getMin, getSum
-
-
-
-
Method Detail
-
addSize
void addSize(@Nonnegative long nSize)
Add a new size- Parameters:
nSize- The size to be added. Must be ≥ 0 as sizes cannot be negative.
-
-