public static enum ColumnChange.Change extends Enum<ColumnChange.Change>
ADD_COLUMN
DROP_COLUMN
CHG_DATATYPE
CHG_TO_NULL
CHG_TO_NOT_NULL
CHG_DEFAULT
CHG_DROP_DEFAULT
Enum Constant and Description |
---|
ADD_COLUMN
列变更种类:列添加
|
CHG_DATATYPE
列变更种类:数据类型变化
|
CHG_DEFAULT
列变更种类:添加或修改缺省值的表达式
|
CHG_DROP_DEFAULT
列变更种类: 取消DEFAULT设置
|
CHG_TO_NOT_NULL
列变更种类:变更为NOT NULL
|
CHG_TO_NULL
列变更种类: 变更为可NULL
|
DROP_COLUMN
列变更种类: 列删除
|
Modifier and Type | Method and Description |
---|---|
static ColumnChange.Change |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnChange.Change[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnChange.Change ADD_COLUMN
public static final ColumnChange.Change DROP_COLUMN
public static final ColumnChange.Change CHG_DATATYPE
public static final ColumnChange.Change CHG_TO_NULL
public static final ColumnChange.Change CHG_TO_NOT_NULL
public static final ColumnChange.Change CHG_DEFAULT
public static final ColumnChange.Change CHG_DROP_DEFAULT
public static ColumnChange.Change[] values()
for (ColumnChange.Change c : ColumnChange.Change.values()) System.out.println(c);
public static ColumnChange.Change 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. All rights reserved.