public enum ChangeStatus extends java.lang.Enum<ChangeStatus>
| Enum Constant and Description |
|---|
ALREADY_APPLIED
Change was already applied in a previous execution.
|
APPLIED
Change was successfully applied.
|
FAILED
Change failed during execution.
|
NOT_REACHED
Change was not reached due to a prior failure.
|
ROLLED_BACK
Change failed but was successfully rolled back.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangeStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeStatus APPLIED
public static final ChangeStatus ALREADY_APPLIED
public static final ChangeStatus FAILED
public static final ChangeStatus ROLLED_BACK
public static final ChangeStatus NOT_REACHED
public static ChangeStatus[] values()
for (ChangeStatus c : ChangeStatus.values()) System.out.println(c);
public static ChangeStatus 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