Uses of Class
com.orchestranetworks.addon.dint.mapping.TableMapping
Package
Description
Provides classes and interfaces for creating a mapping specification between source and target tables.
-
Uses of TableMapping in com.orchestranetworks.addon.dint.mapping
Modifier and TypeMethodDescriptionabstract TableMapping<SF,
TF> Maps a source field and a target field.final 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
.static <ST extends Table<SF>,
SF extends Field, TT extends Table<TF>, TF extends Field>
TableMapping<SF,TF> TableMapping.of
(SourceTable<ST, SF> source, TargetTable<TT, TF>... targets) Creates a new instance from a source table and one or many target tables.Modifier and TypeMethodDescriptionabstract List<TableMapping>
MappingSpec.getTableMappings()
Returns an unmodifiable list of the current table mappings.Modifier and TypeMethodDescriptionabstract void
MappingSpec.addTableMapping
(TableMapping tableMapping) Adds a table mapping.static MappingSpec
MappingSpec.of
(TableMapping... tableMappings) Creates a mapping specification with given table mappings.