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