public enum OperationType extends java.lang.Enum<OperationType>
| Enum Constant and Description |
|---|
ALTER |
CREATE |
CUSTOM |
DELETE |
DROP |
INSERT |
UNKNOWN |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static OperationType |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
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 INSERT
public static final OperationType UPDATE
public static final OperationType DELETE
public static final OperationType CREATE
public static final OperationType ALTER
public static final OperationType DROP
public static final OperationType CUSTOM
public static final OperationType UNKNOWN
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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<OperationType>public static OperationType fromValue(java.lang.String text)