public enum OperationOutcome extends java.lang.Enum<OperationOutcome>
| Enum Constant and Description |
|---|
ERROR_SEQUENCE
A sequence was generated and output as an Error-revealing sequence.
|
NO_INPUTS_FOUND
No sequence was generated because no inputs could be found.
|
REGRESSION_SEQUENCE
A sequence was generated and output as a regression test sequence.
|
REMOVED
The operation was removed from the list.
|
SEQUENCE_DISCARDED
The generated sequence was discarded for one of several reasons.
|
SUBSUMED
The generated sequence was discarded because it was subsumed.
|
| Modifier and Type | Method and Description |
|---|---|
static OperationOutcome |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationOutcome ERROR_SEQUENCE
public static final OperationOutcome REGRESSION_SEQUENCE
public static final OperationOutcome NO_INPUTS_FOUND
public static final OperationOutcome REMOVED
public static final OperationOutcome SUBSUMED
public static final OperationOutcome SEQUENCE_DISCARDED
public static OperationOutcome[] values()
for (OperationOutcome c : OperationOutcome.values()) System.out.println(c);
public static OperationOutcome valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null