public enum AlterTableType extends Enum<AlterTableType>
Enum Constant and Description |
---|
ADD_COLUMN |
RENAME_COLUMN |
RENAME_TABLE |
Modifier and Type | Method and Description |
---|---|
static AlterTableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlterTableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlterTableType RENAME_TABLE
public static final AlterTableType RENAME_COLUMN
public static final AlterTableType ADD_COLUMN
public static AlterTableType[] values()
for (AlterTableType c : AlterTableType.values()) System.out.println(c);
public static AlterTableType 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 © 2014 Apache Software Foundation. All Rights Reserved.