public enum OperationType extends java.lang.Enum<OperationType>
| Enum Constant and Description |
|---|
AUDIT_FIX |
AUDIT_LIST |
EXECUTE_APPLY |
EXECUTE_DRYRUN |
EXECUTE_ROLLBACK |
EXECUTE_VALIDATE |
ISSUE_GET |
ISSUE_LIST |
| Modifier and Type | Method and Description |
|---|---|
static OperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationType EXECUTE_APPLY
public static final OperationType EXECUTE_ROLLBACK
public static final OperationType EXECUTE_VALIDATE
public static final OperationType EXECUTE_DRYRUN
public static final OperationType AUDIT_LIST
public static final OperationType AUDIT_FIX
public static final OperationType ISSUE_LIST
public static final OperationType ISSUE_GET
public static OperationType[] values()
for (OperationType c : OperationType.values()) System.out.println(c);
public static OperationType 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