public static enum SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition extends Enum<SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition>
SQLMappingColumnDefinition
implementations that are available in {addon.label}.Enum Constant and Description |
---|
MAP_LABEL_AND_TYPE_WITH_INSENSITIVE
A
PredefinedSQLMappingColumnDefinition enum that maps the column's label and data type without using case-sensitive comparison. |
MAP_LABEL_AND_TYPE_WITH_SENSITIVE
A
PredefinedSQLMappingColumnDefinition enum that maps the column's label and data type using case-sensitive comparison. |
MAP_LABEL_WITH_INSENSITIVE
A
PredefinedSQLMappingColumnDefinition enum that maps the column's label without using case-sensitive comparison. |
MAP_LABEL_WITH_SENSITIVE
A
PredefinedSQLMappingColumnDefinition enum that maps the column's label using case-sensitive comparison. |
MAP_NAME_AND_TYPE_WITH_INSENSITIVE
A
PredefinedSQLMappingColumnDefinition enum that maps the column's name and data type without using case-sensitive comparison. |
MAP_NAME_AND_TYPE_WITH_SENSITIVE
A
PredefinedSQLMappingColumnDefinition enum that maps the column's name and data type using case-sensitive comparison. |
MAP_NAME_WITH_INSENSITIVE
A
PredefinedSQLMappingColumnDefinition enum that maps the column's name without using case-sensitive comparison. |
MAP_NAME_WITH_SENSITIVE
A
PredefinedSQLMappingColumnDefinition enum that maps the column's name using case-sensitive comparison. |
Modifier and Type | Method and Description |
---|---|
static SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_LABEL_AND_TYPE_WITH_INSENSITIVE
PredefinedSQLMappingColumnDefinition
enum that maps the column's label and data type without using case-sensitive comparison.public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_LABEL_AND_TYPE_WITH_SENSITIVE
PredefinedSQLMappingColumnDefinition
enum that maps the column's label and data type using case-sensitive comparison.public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_LABEL_WITH_INSENSITIVE
PredefinedSQLMappingColumnDefinition
enum that maps the column's label without using case-sensitive comparison.public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_LABEL_WITH_SENSITIVE
PredefinedSQLMappingColumnDefinition
enum that maps the column's label using case-sensitive comparison.public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_NAME_AND_TYPE_WITH_INSENSITIVE
PredefinedSQLMappingColumnDefinition
enum that maps the column's name and data type without using case-sensitive comparison.public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_NAME_AND_TYPE_WITH_SENSITIVE
PredefinedSQLMappingColumnDefinition
enum that maps the column's name and data type using case-sensitive comparison.public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_NAME_WITH_INSENSITIVE
PredefinedSQLMappingColumnDefinition
enum that maps the column's name without using case-sensitive comparison.public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_NAME_WITH_SENSITIVE
PredefinedSQLMappingColumnDefinition
enum that maps the column's name using case-sensitive comparison.public static SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition[] values()
for (SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition c : SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition.values()) System.out.println(c);
public static SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition 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 null