public enum DDLOperation extends Enum<DDLOperation>
| Modifier and Type | Method and Description |
|---|---|
static DDLOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DDLOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DDLOperation create
public static final DDLOperation drop
public static final DDLOperation truncate
public static DDLOperation[] values()
for (DDLOperation c : DDLOperation.values()) System.out.println(c);
public static DDLOperation 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 © 2017. All rights reserved.