static DoubleStatistics.Builder |
DoubleStatistics.builder(Statistic... statistics) |
Returns a new builder configured to create instances to compute the specified
statistics .
|
static IntStatistics.Builder |
IntStatistics.builder(Statistic... statistics) |
Returns a new builder configured to create instances to compute the specified
statistics .
|
static LongStatistics.Builder |
LongStatistics.builder(Statistic... statistics) |
Returns a new builder configured to create instances to compute the specified
statistics .
|
BigInteger |
IntStatistics.getAsBigInteger(Statistic statistic) |
Gets the value of the specified statistic as a BigInteger .
|
BigInteger |
LongStatistics.getAsBigInteger(Statistic statistic) |
Gets the value of the specified statistic as a BigInteger .
|
double |
DoubleStatistics.getAsDouble(Statistic statistic) |
Gets the value of the specified statistic as a double .
|
double |
IntStatistics.getAsDouble(Statistic statistic) |
Gets the value of the specified statistic as a double .
|
double |
LongStatistics.getAsDouble(Statistic statistic) |
Gets the value of the specified statistic as a double .
|
int |
IntStatistics.getAsInt(Statistic statistic) |
Gets the value of the specified statistic as an int .
|
long |
IntStatistics.getAsLong(Statistic statistic) |
Gets the value of the specified statistic as a long .
|
long |
LongStatistics.getAsLong(Statistic statistic) |
Gets the value of the specified statistic as a long .
|
StatisticResult |
DoubleStatistics.getResult(Statistic statistic) |
Gets a supplier for the value of the specified statistic .
|
StatisticResult |
IntStatistics.getResult(Statistic statistic) |
Gets a supplier for the value of the specified statistic .
|
StatisticResult |
LongStatistics.getResult(Statistic statistic) |
Gets a supplier for the value of the specified statistic .
|
boolean |
DoubleStatistics.isSupported(Statistic statistic) |
Check if the specified statistic is supported.
|
boolean |
IntStatistics.isSupported(Statistic statistic) |
Check if the specified statistic is supported.
|
boolean |
LongStatistics.isSupported(Statistic statistic) |
Check if the specified statistic is supported.
|
static DoubleStatistics |
DoubleStatistics.of(Statistic... statistics) |
Returns a new instance configured to compute the specified statistics .
|
static IntStatistics |
IntStatistics.of(Statistic... statistics) |
Returns a new instance configured to compute the specified statistics .
|
static LongStatistics |
LongStatistics.of(Statistic... statistics) |
Returns a new instance configured to compute the specified statistics .
|