public enum OrderOrActionTypeValues extends java.lang.Enum<OrderOrActionTypeValues>
List of order or action for key.
Enum Constant and Description |
---|
_A
Ascending order or deletion of a column (DROP) The column is sorted in ascending order.
|
_D
Descending order or deletion of a column (DROP) The column is sorted in descending order.
|
_M
For an alter table, Modification of a column (MODIFY) The column is to be modified.
|
NONE
No order or add a column (ADD).
|
Modifier and Type | Method and Description |
---|---|
static OrderOrActionTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OrderOrActionTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderOrActionTypeValues _A
Ascending order or deletion of a column (DROP) The column is sorted in ascending order.
public static final OrderOrActionTypeValues _D
Descending order or deletion of a column (DROP) The column is sorted in descending order.
public static final OrderOrActionTypeValues _M
For an alter table, Modification of a column (MODIFY) The column is to be modified.
public static final OrderOrActionTypeValues NONE
No order or add a column (ADD).
No DDL sort command is generated (default value)
public static OrderOrActionTypeValues 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 nullpublic static OrderOrActionTypeValues[] values()
for (OrderOrActionTypeValues c : OrderOrActionTypeValues.values()) System.out.println(c);