public enum Statistics extends Enum<Statistics>
| Enum Constant and Description |
|---|
average |
maximum |
minimum |
sampleCount |
sum |
| Modifier and Type | Method and Description |
|---|---|
static Statistics |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Statistics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Statistics average
public static final Statistics maximum
public static final Statistics minimum
public static final Statistics sum
public static final Statistics sampleCount
public static Statistics[] values()
for (Statistics c : Statistics.values()) System.out.println(c);
public static Statistics valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.