Example usage for Java java.util IntSummaryStatistics fields, constructors, methods, implement or subclass
The text is from its open source code.
double | getAverage() Returns the arithmetic mean of values recorded, or zero if no values have been recorded. |
long | getCount() Returns the count of values recorded. |
int | getMax() Returns the maximum value recorded, or Integer.MIN_VALUE if no values have been recorded. |
int | getMin() Returns the minimum value recorded, or Integer.MAX_VALUE if no values have been recorded. |
long | getSum() Returns the sum of values recorded, or zero if no values have been recorded. |