Enum SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition
java.lang.Object
java.lang.Enum<SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition>
com.orchestranetworks.addon.dataexchange.sql.SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition
- All Implemented Interfaces:
Serializable,Comparable<SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition>,Constable
- Enclosing interface:
- SQLMappingColumnDefinition
public static enum SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition
extends Enum<SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition>
Defines all internal
SQLMappingColumnDefinition implementations that are available in {addon.label}.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAPredefinedSQLMappingColumnDefinitionenum that maps the column's label and data type without using case-sensitive comparison.APredefinedSQLMappingColumnDefinitionenum that maps the column's label and data type using case-sensitive comparison.APredefinedSQLMappingColumnDefinitionenum that maps the column's label without using case-sensitive comparison.APredefinedSQLMappingColumnDefinitionenum that maps the column's label using case-sensitive comparison.APredefinedSQLMappingColumnDefinitionenum that maps the column's name and data type without using case-sensitive comparison.APredefinedSQLMappingColumnDefinitionenum that maps the column's name and data type using case-sensitive comparison.APredefinedSQLMappingColumnDefinitionenum that maps the column's name without using case-sensitive comparison.APredefinedSQLMappingColumnDefinitionenum that maps the column's name using case-sensitive comparison. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
MAP_LABEL_AND_TYPE_WITH_INSENSITIVE
public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_LABEL_AND_TYPE_WITH_INSENSITIVEAPredefinedSQLMappingColumnDefinitionenum that maps the column's label and data type without using case-sensitive comparison. -
MAP_LABEL_AND_TYPE_WITH_SENSITIVE
public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_LABEL_AND_TYPE_WITH_SENSITIVEAPredefinedSQLMappingColumnDefinitionenum that maps the column's label and data type using case-sensitive comparison. -
MAP_LABEL_WITH_INSENSITIVE
public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_LABEL_WITH_INSENSITIVEAPredefinedSQLMappingColumnDefinitionenum that maps the column's label without using case-sensitive comparison. -
MAP_LABEL_WITH_SENSITIVE
public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_LABEL_WITH_SENSITIVEAPredefinedSQLMappingColumnDefinitionenum that maps the column's label using case-sensitive comparison. -
MAP_NAME_AND_TYPE_WITH_INSENSITIVE
public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_NAME_AND_TYPE_WITH_INSENSITIVEAPredefinedSQLMappingColumnDefinitionenum that maps the column's name and data type without using case-sensitive comparison. -
MAP_NAME_AND_TYPE_WITH_SENSITIVE
public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_NAME_AND_TYPE_WITH_SENSITIVEAPredefinedSQLMappingColumnDefinitionenum that maps the column's name and data type using case-sensitive comparison. -
MAP_NAME_WITH_INSENSITIVE
public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_NAME_WITH_INSENSITIVEAPredefinedSQLMappingColumnDefinitionenum that maps the column's name without using case-sensitive comparison. -
MAP_NAME_WITH_SENSITIVE
public static final SQLMappingColumnDefinition.PredefinedSQLMappingColumnDefinition MAP_NAME_WITH_SENSITIVEAPredefinedSQLMappingColumnDefinitionenum that maps the column's name using case-sensitive comparison.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-