public static enum AlterTableStatement.Type extends java.lang.Enum<AlterTableStatement.Type>
Enum Constant and Description |
---|
ADD |
ALTER |
DROP |
DROP_COMPACT_STORAGE |
OPTS |
RENAME |
Modifier and Type | Method and Description |
---|---|
static AlterTableStatement.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlterTableStatement.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlterTableStatement.Type ADD
public static final AlterTableStatement.Type ALTER
public static final AlterTableStatement.Type DROP
public static final AlterTableStatement.Type DROP_COMPACT_STORAGE
public static final AlterTableStatement.Type OPTS
public static final AlterTableStatement.Type RENAME
public static AlterTableStatement.Type[] values()
for (AlterTableStatement.Type c : AlterTableStatement.Type.values()) System.out.println(c);
public static AlterTableStatement.Type 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 nullCopyright © 2020 The Apache Software Foundation