Uses of Class
com.orchestranetworks.addon.dint.mapping.TableMapping
Packages that use 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
Methods in com.orchestranetworks.addon.dint.mapping that return TableMappingModifier 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.Methods in com.orchestranetworks.addon.dint.mapping that return types with arguments of type TableMappingModifier and TypeMethodDescriptionabstract List<TableMapping>MappingSpec.getTableMappings()Returns an unmodifiable list of the current table mappings.Methods in com.orchestranetworks.addon.dint.mapping with parameters of type TableMappingModifier and TypeMethodDescriptionabstract voidMappingSpec.addTableMapping(TableMapping tableMapping) Adds a table mapping.static MappingSpecMappingSpec.of(TableMapping... tableMappings) Creates a mapping specification with given table mappings.