public static enum ChangeSet.ExecType extends java.lang.Enum<ChangeSet.ExecType>
Enum Constant and Description |
---|
EXECUTED |
FAILED |
MARK_RAN |
RERAN |
SKIPPED |
Modifier and Type | Field and Description |
---|---|
boolean |
ran |
boolean |
ranBefore |
java.lang.String |
value |
Modifier and Type | Method and Description |
---|---|
static ChangeSet.ExecType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeSet.ExecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeSet.ExecType EXECUTED
public static final ChangeSet.ExecType FAILED
public static final ChangeSet.ExecType SKIPPED
public static final ChangeSet.ExecType RERAN
public static final ChangeSet.ExecType MARK_RAN
public final java.lang.String value
public final boolean ranBefore
public final boolean ran
public static ChangeSet.ExecType[] values()
for (ChangeSet.ExecType c : ChangeSet.ExecType.values()) System.out.println(c);
public static ChangeSet.ExecType 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