public static enum BasicCrossoverModule.DoubleType extends java.lang.Enum<BasicCrossoverModule.DoubleType>
Crossover
operator for the DoubleGenotype
.Enum Constant and Description |
---|
BLX
Use the
CrossoverDoubleBLX . |
SBX
Use the
CrossoverDoubleSBX . |
UNFAIR_AVERAGE
Use the
CrossoverDoubleUnfairAverage . |
Modifier and Type | Method and Description |
---|---|
static BasicCrossoverModule.DoubleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BasicCrossoverModule.DoubleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicCrossoverModule.DoubleType BLX
CrossoverDoubleBLX
.public static final BasicCrossoverModule.DoubleType SBX
CrossoverDoubleSBX
.public static final BasicCrossoverModule.DoubleType UNFAIR_AVERAGE
CrossoverDoubleUnfairAverage
.public static BasicCrossoverModule.DoubleType[] values()
for (BasicCrossoverModule.DoubleType c : BasicCrossoverModule.DoubleType.values()) System.out.println(c);
public static BasicCrossoverModule.DoubleType 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