public static enum Properties.TheReplacementFunction extends Enum<Properties.TheReplacementFunction>
| Enum Constant and Description |
|---|
DEFAULT
EvoSuite's default replacement function which only works on subtypes
of the default chromosome types.
|
FITNESSREPLACEMENT
Indicates a replacement function which works for all chromosomes
because it solely relies on fitness values.
|
| Modifier and Type | Method and Description |
|---|---|
static Properties.TheReplacementFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Properties.TheReplacementFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Properties.TheReplacementFunction FITNESSREPLACEMENT
public static final Properties.TheReplacementFunction DEFAULT
public static Properties.TheReplacementFunction[] values()
for (Properties.TheReplacementFunction c : Properties.TheReplacementFunction.values()) System.out.println(c);
public static Properties.TheReplacementFunction 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.