public enum ChangeAction extends java.lang.Enum<ChangeAction>
| Enum Constant and Description |
|---|
APPLY
The change needs to be applied/applied.
|
MANUAL_INTERVENTION
Manual intervention is required for this change.
|
SKIP
The change should be skipped as it has already been successfully applied.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangeAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeAction APPLY
public static final ChangeAction SKIP
public static final ChangeAction MANUAL_INTERVENTION
public static ChangeAction[] values()
for (ChangeAction c : ChangeAction.values()) System.out.println(c);
public static ChangeAction 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