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