public static enum Fitness.SortingMode extends java.lang.Enum<Fitness.SortingMode>
Enum Constant and Description |
---|
CROWDING |
DOMINANCE |
HIERACHICAL |
PARTIAL |
Modifier and Type | Method and Description |
---|---|
static Fitness.SortingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Fitness.SortingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fitness.SortingMode PARTIAL
public static final Fitness.SortingMode HIERACHICAL
public static final Fitness.SortingMode DOMINANCE
public static final Fitness.SortingMode CROWDING
public static Fitness.SortingMode[] values()
for (Fitness.SortingMode c : Fitness.SortingMode.values()) System.out.println(c);
public static Fitness.SortingMode 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