public static enum Properties.StoppingCondition extends Enum<Properties.StoppingCondition>
| Enum Constant and Description |
|---|
MAXFITNESSEVALUATIONS |
MAXGENERATIONS |
MAXSTATEMENTS |
MAXTESTS |
MAXTIME
Max time in seconds
|
TIMEDELTA |
| Modifier and Type | Method and Description |
|---|---|
static Properties.StoppingCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Properties.StoppingCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Properties.StoppingCondition MAXSTATEMENTS
public static final Properties.StoppingCondition MAXTESTS
public static final Properties.StoppingCondition MAXTIME
public static final Properties.StoppingCondition MAXGENERATIONS
public static final Properties.StoppingCondition MAXFITNESSEVALUATIONS
public static final Properties.StoppingCondition TIMEDELTA
public static Properties.StoppingCondition[] values()
for (Properties.StoppingCondition c : Properties.StoppingCondition.values()) System.out.println(c);
public static Properties.StoppingCondition 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.