public enum CrossoverOperators extends java.lang.Enum<CrossoverOperators> implements IOperators
PLA Crossover,
PLA Complementary Crossover
PLA Modular Crossover
| Enum Constant and Description |
|---|
PLA_COMPLEMENTARY_CROSSOVER |
PLA_FEATURE_DRIVEN_CROSSOVER |
PLA_MODULAR_CROSSOVER |
| Modifier and Type | Method and Description |
|---|---|
static CrossoverOperators |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CrossoverOperators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetOperatorpublic static final CrossoverOperators PLA_FEATURE_DRIVEN_CROSSOVER
public static final CrossoverOperators PLA_COMPLEMENTARY_CROSSOVER
public static final CrossoverOperators PLA_MODULAR_CROSSOVER
public static CrossoverOperators[] values()
for (CrossoverOperators c : CrossoverOperators.values()) System.out.println(c);
public static CrossoverOperators 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