public static enum GeneticAlgorithm.ElitismStrategy extends java.lang.Enum<GeneticAlgorithm.ElitismStrategy>
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 GeneticAlgorithm.ElitismStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeneticAlgorithm.ElitismStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeneticAlgorithm.ElitismStrategy RANDOM
public static final GeneticAlgorithm.ElitismStrategy WORST
public static GeneticAlgorithm.ElitismStrategy[] values()
for (GeneticAlgorithm.ElitismStrategy c : GeneticAlgorithm.ElitismStrategy.values()) System.out.println(c);
public static GeneticAlgorithm.ElitismStrategy 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