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