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