Package | Description |
---|---|
com.orchestranetworks.addon.dint.mapping |
Provides classes and interfaces for creating a mapping specification between source and target tables.
|
Modifier and Type | Method and Description |
---|---|
static <SF extends Field,TF extends Field> |
FieldMatcher.getMatcherByIndex()
Return
true if the source field's index equals the target field's index |
static <SF extends Field,TF extends Field> |
FieldMatcher.getMatcherByLabel()
Returns
true if the source field's label equals the target field's label (case-sensitive). |
static <SF extends Field,TF extends Field> |
FieldMatcher.getMatcherByLabelIgnoreCase()
Returns
true if the source field's label equals the target field's label (case-insensitive). |
Modifier and Type | Method and Description |
---|---|
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 provided
FieldMatcher . |