Java java.util IntSummaryStatistics fields, constructors, methods, implement or subclass

Example usage for Java java.util IntSummaryStatistics fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util IntSummaryStatistics.

The text is from its open source code.

Method

doublegetAverage()
Returns the arithmetic mean of values recorded, or zero if no values have been recorded.
longgetCount()
Returns the count of values recorded.
intgetMax()
Returns the maximum value recorded, or Integer.MIN_VALUE if no values have been recorded.
intgetMin()
Returns the minimum value recorded, or Integer.MAX_VALUE if no values have been recorded.
longgetSum()
Returns the sum of values recorded, or zero if no values have been recorded.