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