public enum AlterType extends Enum<AlterType>
| Enum Constant and Description |
|---|
ADD_COLUMN |
ADD_TAG |
DROP_COLUMN |
DROP_TAG |
MODIFY_COLUMN_LENGTH |
MODIFY_TABLE_OPTION |
MODIFY_TAG_LENGTH |
RENAME_COLUMN_NAME |
RENAME_TAG_NAME |
SET_TAG |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static AlterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlterType ADD_TAG
public static final AlterType DROP_TAG
public static final AlterType RENAME_TAG_NAME
public static final AlterType SET_TAG
public static final AlterType ADD_COLUMN
public static final AlterType DROP_COLUMN
public static final AlterType MODIFY_COLUMN_LENGTH
public static final AlterType MODIFY_TAG_LENGTH
public static final AlterType MODIFY_TABLE_OPTION
public static final AlterType RENAME_COLUMN_NAME
public static AlterType[] values()
for (AlterType c : AlterType.values()) System.out.println(c);
public static AlterType 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 nullpublic int getValue()
Copyright © 2025. All rights reserved.