public enum CrossoverStrategy extends Enum<CrossoverStrategy>
Enum Constant and Description |
---|
MULTI_POINT
Multi point.
|
ONE_POINT
One point.
|
TWO_POINT
Two point.
|
UNIFORM
Uniform.
|
Modifier and Type | Method and Description |
---|---|
static CrossoverStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrossoverStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrossoverStrategy ONE_POINT
public static final CrossoverStrategy TWO_POINT
public static final CrossoverStrategy MULTI_POINT
public static final CrossoverStrategy UNIFORM
public static CrossoverStrategy[] values()
for (CrossoverStrategy c : CrossoverStrategy.values()) System.out.println(c);
public static CrossoverStrategy valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
GridGain In-Memory Computing Platform : ver. 8.9.14 Release Date : November 5 2024