Uses of Class
com.orchestranetworks.addon.dint.mapping.TableMapping
-
Packages that use TableMapping Package Description com.orchestranetworks.addon.dint.mapping 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 TableMapping Modifier and Type Method Description abstract TableMapping<SF,TF>TableMapping. mapFields(SF sourceField, TF targetField)Maps a source field and a target field.TableMapping<SF,TF>TableMapping. mapFieldsWithMatcher(java.util.Collection<SF> sourceFields, java.util.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 TableMapping Modifier and Type Method Description abstract java.util.List<TableMapping>MappingSpec. getTableMappings()Returns an unmodifiable list of the current table mappings.Methods in com.orchestranetworks.addon.dint.mapping with parameters of type TableMapping Modifier and Type Method Description abstract voidMappingSpec. addTableMapping(TableMapping tableMapping)Adds a table mapping.static MappingSpecMappingSpec. of(TableMapping... tableMappings)Creates a mapping specification with given table mappings.
-