public enum DDLOperation extends Enum<DDLOperation>
| Enum Constant and Description |
|---|
ALTER_TABLE |
CREATE_DATABASE |
CREATE_TABLE |
DROP_DATABASE |
DROP_TABLE |
RENAME_TABLE |
TRUNCATE_TABLE |
| 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_DATABASE
public static final DDLOperation DROP_DATABASE
public static final DDLOperation CREATE_TABLE
public static final DDLOperation DROP_TABLE
public static final DDLOperation TRUNCATE_TABLE
public static final DDLOperation ALTER_TABLE
public static final DDLOperation RENAME_TABLE
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 © 2020 CDAP Licensed under the Apache License, Version 2.0.