Uses of Interface
com.orchestranetworks.addon.dint.mapping.FieldMatcher
Packages that use 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
Methods in com.orchestranetworks.addon.dint.mapping that return FieldMatcherModifier and TypeMethodDescriptionstatic <SF extends Field,TF extends Field>
FieldMatcher<SF,TF> FieldMatcher.getMatcherByIndex()Returntrueif the source field's index equals the target field's indexstatic <SF extends Field,TF extends Field>
FieldMatcher<SF,TF> FieldMatcher.getMatcherByLabel()Returnstrueif 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()Returnstrueif the source field's label equals the target field's label (case-insensitive).Methods in com.orchestranetworks.addon.dint.mapping with parameters of type FieldMatcherModifier 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.