public enum StatsType extends Enum<StatsType>
| Enum Constant and Description |
|---|
Max |
Mean |
Min |
StandardDeviation |
| Modifier and Type | Method and Description |
|---|---|
static StatsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatsType Mean
public static final StatsType StandardDeviation
public static final StatsType Min
public static final StatsType Max
public static StatsType[] values()
for (StatsType c : StatsType.values()) System.out.println(c);
public static StatsType 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 © 2019. All Rights Reserved.