public static enum Properties.Algorithm extends Enum<Properties.Algorithm>
| Enum Constant and Description |
|---|
MONOTONICGA |
MOSA |
NSGAII |
ONEPLUSONEEA |
RANDOM |
SPEA2 |
STANDARDGA |
STEADYSTATEGA |
| Modifier and Type | Method and Description |
|---|---|
static Properties.Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Properties.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Properties.Algorithm STANDARDGA
public static final Properties.Algorithm MONOTONICGA
public static final Properties.Algorithm ONEPLUSONEEA
public static final Properties.Algorithm STEADYSTATEGA
public static final Properties.Algorithm RANDOM
public static final Properties.Algorithm NSGAII
public static final Properties.Algorithm MOSA
public static final Properties.Algorithm SPEA2
public static Properties.Algorithm[] values()
for (Properties.Algorithm c : Properties.Algorithm.values()) System.out.println(c);
public static Properties.Algorithm 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.