Uses of Class
com.orchestranetworks.addon.dint.mapping.SourceTable
-
Packages that use SourceTable Package Description com.orchestranetworks.addon.dint.mapping Provides classes and interfaces for creating a mapping specification between source and target tables.com.orchestranetworks.addon.dint.template Provides classes and interfaces that represent a specification for a user defined template. -
-
Uses of SourceTable in com.orchestranetworks.addon.dint.mapping
Classes in com.orchestranetworks.addon.dint.mapping with type parameters of type SourceTable Modifier and Type Interface Description interfaceTableMappingModificationContext<ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>Context to modify an existingTableMapping.interfaceTableMappingModifier<ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>Allows modification of an existingTableMapping.classTableMappingSelector<ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>Selects an exactTableMappingin aMappingSpec.Subclasses of SourceTable in com.orchestranetworks.addon.dint.mapping Modifier and Type Class Description classCSVSourceTableRepresents the CSV source table in aTableMapping.classEBXSourceTableRepresents the EBX source table in aTableMapping.classExcelSourceTableRepresents the Excel source table in aTableMapping.classSQLSourceTableRepresents the SQL source table in aTableMapping.Methods in com.orchestranetworks.addon.dint.mapping with type parameters of type SourceTable Modifier and Type Method Description static <ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>
TableMappingSelector<ST,TT>TableMappingSelector. atIndex(int index)Selects the table mapping at the specified index.static <ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>
TableMappingSelector<ST,TT>TableMappingSelector. first()Selects the first table mapping.static <ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>
TableMappingSelector<ST,TT>TableMappingSelector. where(java.util.function.Predicate<ST> sourceCriteria, java.util.function.Predicate<TT> targetCriteria)Selects the first table mapping that meets the criteria of both the source table and the target table.static <ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>
TableMappingSelector<ST,TT>TableMappingSelector. whereSource(java.util.function.Predicate<ST> criteria)Selects the first table mapping that meets the criteria of the source table only.static <ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>
TableMappingSelector<ST,TT>TableMappingSelector. whereTarget(java.util.function.Predicate<TT> criteria)Selects the first table mapping that meets the criteria of the target table only.Methods in com.orchestranetworks.addon.dint.mapping with parameters of type SourceTable Modifier and Type Method Description 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. -
Uses of SourceTable in com.orchestranetworks.addon.dint.template
Classes in com.orchestranetworks.addon.dint.template with type parameters of type SourceTable Modifier and Type Class Description classImportExportTemplateSpec<ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>Allows you to overwrite the dataset configured in an import or export template.classTemplateConfig<ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>Configures a user template.classTemplateSpec<ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>Abstract specification for a user template.Methods in com.orchestranetworks.addon.dint.template with type parameters of type SourceTable Modifier and Type Method Description static <ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>
TemplateConfig<ST,TT>TemplateConfig. forDataset(java.lang.String templateName, com.onwbp.adaptation.Adaptation dataset)Specifies a template by name at the dataset level.static <ST extends SourceTable<?,?>,TT extends TargetTable<?,?>>
TemplateConfig<ST,TT>TemplateConfig. forTable(java.lang.String templateName, com.onwbp.adaptation.AdaptationTable table)Specifies a template by name at the table level.
-