public enum StatisticsKeys extends java.lang.Enum<StatisticsKeys>
Enum Constant and Description |
---|
AVERAGE_FITNESS |
ENERGY_SUM |
POPULATION_SIZE |
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 ENERGY_SUM
public static final StatisticsKeys AVERAGE_FITNESS
public static final StatisticsKeys POPULATION_SIZE
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