public static enum BasicMatingModule.CouplerType extends java.lang.Enum<BasicMatingModule.CouplerType>
BasicMatingModule.CouplerType
determines the coupler operator to use.Enum Constant and Description |
---|
DEFAULT
Use the
CouplerDefault operator. |
RANDOM
Use the
CouplerRandom operator. |
UNIQUE
Use the
CouplerUnique operator. |
Modifier and Type | Method and Description |
---|---|
static BasicMatingModule.CouplerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BasicMatingModule.CouplerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicMatingModule.CouplerType DEFAULT
CouplerDefault
operator.public static final BasicMatingModule.CouplerType RANDOM
CouplerRandom
operator.public static final BasicMatingModule.CouplerType UNIQUE
CouplerUnique
operator.public static BasicMatingModule.CouplerType[] values()
for (BasicMatingModule.CouplerType c : BasicMatingModule.CouplerType.values()) System.out.println(c);
public static BasicMatingModule.CouplerType 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