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