public static enum IslandGA.ReplacementStrategy extends java.lang.Enum<IslandGA.ReplacementStrategy>
Enum Constant and Description |
---|
RANDOM
A number of individuals is randomly chosen, and substituted
|
WORST
Worst individuals are substituted
|
Modifier and Type | Method and Description |
---|---|
static IslandGA.ReplacementStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IslandGA.ReplacementStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IslandGA.ReplacementStrategy RANDOM
public static final IslandGA.ReplacementStrategy WORST
public static IslandGA.ReplacementStrategy[] values()
for (IslandGA.ReplacementStrategy c : IslandGA.ReplacementStrategy.values()) System.out.println(c);
public static IslandGA.ReplacementStrategy 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