public static enum Properties.SelectionFunction extends Enum<Properties.SelectionFunction>
| Enum Constant and Description |
|---|
BINARY_TOURNAMENT |
RANK |
ROULETTEWHEEL |
TOURNAMENT |
| Modifier and Type | Method and Description |
|---|---|
static Properties.SelectionFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Properties.SelectionFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Properties.SelectionFunction RANK
public static final Properties.SelectionFunction ROULETTEWHEEL
public static final Properties.SelectionFunction TOURNAMENT
public static final Properties.SelectionFunction BINARY_TOURNAMENT
public static Properties.SelectionFunction[] values()
for (Properties.SelectionFunction c : Properties.SelectionFunction.values()) System.out.println(c);
public static Properties.SelectionFunction 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 nullCopyright © 2010–2017 EvoSuite. All rights reserved.