public interface WithStats
| Modifier and Type | Method and Description |
|---|---|
default double |
average(double... items)
Calculates the average over a number of items.
|
default float |
average(float... items)
Calculates the average over a number of items.
|
default double |
average(int... items)
Calculates the average over a number of items.
|
default double |
average(long... items)
Calculates the average over a number of items.
|
default double |
average(short... items)
Calculates the average over a number of items.
|
default DoubleSummaryStatistics |
doubleSummaryStatistics(double... items)
Calculate the summary statistics on items.
|
default IntSummaryStatistics |
intSummaryStatistics(int... items)
Calculate the summary statistics on items.
|
default LongSummaryStatistics |
longSummaryStatistics(long... items)
Calculate the summary statistics on items.
|
default double |
max(double... items)
Calculates the maximum over a number of items.
|
default float |
max(float... items)
Calculates the maximum over a number of items.
|
default int |
max(int... items)
Calculates the maximum over a number of items.
|
default long |
max(long... items)
Calculates the maximum over a number of items.
|
default short |
max(short... items)
Calculates the maximum over a number of items.
|
default double |
min(double... items)
Calculates the minimum over a number of items.
|
default float |
min(float... items)
Calculates the minimum over a number of items.
|
default int |
min(int... items)
Calculates the minimum over a number of items.
|
default long |
min(long... items)
Calculates the minimum over a number of items.
|
default short |
min(short... items)
Calculats the minimum over a number of items.
|
default double |
sum(double... items)
Calculates the sum over a number of items.
|
default float |
sum(float... items)
Calculates the sum over a number of items.
|
default long |
sum(int... items)
Calculates the sum over a number of items.
|
default long |
sum(long... items)
Calculates the sum over a number of items.
|
default long |
sum(short... items)
Calculates the sum over a number of items.
|
default LongSummaryStatistics longSummaryStatistics(long... items)
items - the items to calculate the statistics ondefault double max(double... items)
items - the items to calculate the maximum fromdefault float max(float... items)
items - the items to calculate the maximum fromdefault int max(int... items)
items - the items to calculate the maximum fromdefault long max(long... items)
items - the items to calculate the maximum fromdefault short max(short... items)
items - the items to calculate the maximum fromdefault double min(double... items)
items - the items to calculate the minimum fromdefault float min(float... items)
items - the items to calculate the minimum fromdefault int min(int... items)
items - the items to calculate the minimum fromdefault long min(long... items)
items - the items to calculate the minimum fromdefault short min(short... items)
items - the items to calculate the minumum fromdefault double sum(double... items)
items - the items to sum the minimum fromdefault float sum(float... items)
items - the items to sum the minimum fromdefault long sum(int... items)
items - the items to sumdefault long sum(long... items)
items - the items to sumdefault long sum(short... items)
items - the items to sumdefault double average(double... items)
items - the items to calculate the average fromdefault float average(float... items)
items - the items to calculate the average fromdefault double average(int... items)
items - the items to calculate the average fromdefault double average(long... items)
items - the items to calculate the average fromdefault double average(short... items)
items - the items to calculate the average fromdefault DoubleSummaryStatistics doubleSummaryStatistics(double... items)
items - the items to calculate the statistics ondefault IntSummaryStatistics intSummaryStatistics(int... items)
items - the items to calculate the statistics onCopyright © 2021. All rights reserved.