public enum StatisticsKeys extends java.lang.Enum<StatisticsKeys>
Enum Constant and Description |
---|
BEST_EVER |
BEST_EVER_STEP |
CURRENT_BEST |
STEP_NUMBER |
Modifier and Type | Method and Description |
---|---|
static StatisticsKeys |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatisticsKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatisticsKeys STEP_NUMBER
public static final StatisticsKeys CURRENT_BEST
public static final StatisticsKeys BEST_EVER
public static final StatisticsKeys BEST_EVER_STEP
public static StatisticsKeys[] values()
for (StatisticsKeys c : StatisticsKeys.values()) System.out.println(c);
public static StatisticsKeys valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null