Uses of Interface
com.orchestranetworks.addon.dint.schema.DataType
-
Packages that use DataType Package Description com.orchestranetworks.addon.dint.dataconnector.spec Provides classes for source and target table specifications.com.orchestranetworks.addon.dint.mapping.steps Provides classes and interfaces for creating the field mapping steps and the transformation mapping steps.com.orchestranetworks.addon.dint.schema Provides classes and interfaces that represent fields and tables for the supported data source.com.orchestranetworks.addon.dint.transformation Provides classes and interfaces to define and register transformations. -
-
Uses of DataType in com.orchestranetworks.addon.dint.dataconnector.spec
Methods in com.orchestranetworks.addon.dint.dataconnector.spec that return types with arguments of type DataType Modifier and Type Method Description java.util.Set<DataType>EBXTableSpec. getUnsupportedDataTypes()Returns the unsupported data types.Methods in com.orchestranetworks.addon.dint.dataconnector.spec with parameters of type DataType Modifier and Type Method Description EBXSourceTableSpec.EBXSourceTableSpecBuilderEBXSourceTableSpec.EBXSourceTableSpecBuilder. addUnsupportedDataTypes(DataType... dataTypes)Adds unsupported data types.EBXTargetTableSpec.EBXTargetTableSpecBuilderEBXTargetTableSpec.EBXTargetTableSpecBuilder. setUnsupportedDataTypes(DataType... dataTypes)Set the unsupported data types. -
Uses of DataType in com.orchestranetworks.addon.dint.mapping.steps
Methods in com.orchestranetworks.addon.dint.mapping.steps that return DataType Modifier and Type Method Description abstract DataTypeMappingStep. getInputDataType()Returns the data type of the input.DataTypeTransformationMappingStep. getInputDataType()abstract DataTypeMappingStep. getOutputDataType()Returns the output data type of this step.DataTypeTransformationMappingStep. getOutputDataType() -
Uses of DataType in com.orchestranetworks.addon.dint.schema
Classes in com.orchestranetworks.addon.dint.schema that implement DataType Modifier and Type Class Description classDefaultDataTypesDefault data types provided by the add-on.Methods in com.orchestranetworks.addon.dint.schema that return DataType Modifier and Type Method Description default DataTypeDataType. extendFrom()Returns the parent data type that this one extends from.DataTypeCSVField. getDataType()Always returnsDefaultDataTypes.STRING.DataTypeField. getDataType()Returns the data type.DataTypeSQLField. getDataType()Returns the data type of this fieldstatic DataTypeDefaultDataTypes. getForSchemaNode(com.orchestranetworks.schema.SchemaNode schemaNode)Converts a schema node to a default data type.static DataTypeDefaultDataTypes. parse(java.lang.String code)Converts a unique code to a default data type.Methods in com.orchestranetworks.addon.dint.schema with parameters of type DataType Modifier and Type Method Description static booleanDefaultDataTypes. isAnyType(DataType dataType)Returnstrueif this isDefaultDataTypes.ANY_TYPE. -
Uses of DataType in com.orchestranetworks.addon.dint.transformation
Methods in com.orchestranetworks.addon.dint.transformation that return DataType Modifier and Type Method Description DataTypeParameterDefinition. getDataType()Returns the data type.DataTypeInputDefinition. getType()Returns the data type.DataTypeOutputDefinition. getType()Returns the data type.Constructors in com.orchestranetworks.addon.dint.transformation with parameters of type DataType Constructor Description InputDefinition(java.lang.String name, com.onwbp.base.text.UserMessage label, com.onwbp.base.text.UserMessage description, DataType type, boolean multiValued)Constructs a newInputDefinition.InputDefinition(java.lang.String name, com.onwbp.base.text.UserMessage label, DataType type)Constructs a new single-valuedInputDefinition.OutputDefinition(java.lang.String name, com.onwbp.base.text.UserMessage label, com.onwbp.base.text.UserMessage description, DataType type, boolean multiValued)Constructs a newOutputDefinition.OutputDefinition(java.lang.String name, com.onwbp.base.text.UserMessage label, DataType type)Constructs a new single-valuedOutputDefinition.
-