Interface FieldMapperDefinition
public interface FieldMapperDefinition
Defines attributes for
FieldMapper
implementations.- Since:
- 2.3.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final FieldMapperDefinition
AFieldMapperDefinition
that maps the column's label and data type without using case-sensitive comparison.static final FieldMapperDefinition
AFieldMapperDefinition
that maps the column's label and data type using case-sensitive comparison.static final FieldMapperDefinition
AFieldMapperDefinition
that maps the column's label without using case-sensitive comparison.static final FieldMapperDefinition
AFieldMapperDefinition
that maps the column's label using case-sensitive comparison.static final FieldMapperDefinition
AFieldMapperDefinition
that maps the column's name and data type without using case-sensitive comparison.static final FieldMapperDefinition
AFieldMapperDefinition
that maps the column's name and data type using case-sensitive comparison.static final FieldMapperDefinition
AFieldMapperDefinition
that maps the column's name without using case-sensitive comparison.static final FieldMapperDefinition
AFieldMapperDefinition
that maps the column's name using case-sensitive comparison. -
Method Summary
Modifier and TypeMethodDescriptioncom.onwbp.base.text.UserMessage
Returns the description ofFieldMapper
.Returns an instance ofFieldMapper
.com.onwbp.base.text.UserMessage
getLabel()
Returns the label ofFieldMapper
.
-
Field Details
-
MAP_LABEL_AND_TYPE_WITH_INSENSITIVE
AFieldMapperDefinition
that maps the column's label and data type without using case-sensitive comparison. -
MAP_LABEL_AND_TYPE_WITH_SENSITIVE
AFieldMapperDefinition
that maps the column's label and data type using case-sensitive comparison. -
MAP_LABEL_WITH_INSENSITIVE
AFieldMapperDefinition
that maps the column's label without using case-sensitive comparison. -
MAP_LABEL_WITH_SENSITIVE
AFieldMapperDefinition
that maps the column's label using case-sensitive comparison. -
MAP_NAME_AND_TYPE_WITH_INSENSITIVE
AFieldMapperDefinition
that maps the column's name and data type without using case-sensitive comparison. -
MAP_NAME_AND_TYPE_WITH_SENSITIVE
AFieldMapperDefinition
that maps the column's name and data type using case-sensitive comparison. -
MAP_NAME_WITH_INSENSITIVE
AFieldMapperDefinition
that maps the column's name without using case-sensitive comparison. -
MAP_NAME_WITH_SENSITIVE
AFieldMapperDefinition
that maps the column's name using case-sensitive comparison.
-
-
Method Details
-
getLabel
com.onwbp.base.text.UserMessage getLabel()Returns the label ofFieldMapper
. -
getDescription
com.onwbp.base.text.UserMessage getDescription()Returns the description ofFieldMapper
. -
getFieldMapper
FieldMapper getFieldMapper()Returns an instance ofFieldMapper
.
-