public enum DDLActionType extends Enum<DDLActionType>
| Enum Constant and Description |
|---|
ALTER_ADD_COLUMN |
ALTER_ADD_KEY |
ALTER_CHANGE_COLUMN |
ALTER_DROP_COLUMN |
ALTER_DROP_KEY |
CREATE |
CREATE_INDEX |
DROP |
DROP_INDEX |
INSERT |
| Modifier and Type | Method and Description |
|---|---|
static DDLActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DDLActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DDLActionType CREATE
public static final DDLActionType DROP
public static final DDLActionType ALTER_ADD_COLUMN
public static final DDLActionType ALTER_CHANGE_COLUMN
public static final DDLActionType ALTER_DROP_COLUMN
public static final DDLActionType ALTER_ADD_KEY
public static final DDLActionType ALTER_DROP_KEY
public static final DDLActionType CREATE_INDEX
public static final DDLActionType DROP_INDEX
public static final DDLActionType INSERT
public static DDLActionType[] values()
for (DDLActionType c : DDLActionType.values()) System.out.println(c);
public static DDLActionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2007–2018. All rights reserved.