Uses of Interface
com.orchestranetworks.addon.dint.mapping.FieldMatcher
Package
Description
Provides classes and interfaces for creating a mapping specification between source and target tables.
-
Uses of FieldMatcher in com.orchestranetworks.addon.dint.mapping
Modifier and TypeMethodDescriptionstatic <SF extends Field,
TF extends Field>
FieldMatcher<SF,TF> FieldMatcher.getMatcherByIndex()
Returntrue
if the source field's index equals the target field's indexstatic <SF extends Field,
TF extends Field>
FieldMatcher<SF,TF> FieldMatcher.getMatcherByLabel()
Returnstrue
if the source field's label equals the target field's label (case-sensitive).static <SF extends Field,
TF extends Field>
FieldMatcher<SF,TF> FieldMatcher.getMatcherByLabelIgnoreCase()
Returnstrue
if the source field's label equals the target field's label (case-insensitive).Modifier and TypeMethodDescriptionfinal TableMapping<SF,
TF> TableMapping.mapFieldsWithMatcher
(Collection<SF> sourceFields, Collection<TF> targetFields, FieldMatcher<SF, TF> fieldMatcher) Maps automatically all source fields and target fields using the providedFieldMatcher
.