Uses of Class
de.bytefish.pgbulkinsert.pgsql.constants.DataType
-
Packages that use DataType Package Description de.bytefish.pgbulkinsert.mapping de.bytefish.pgbulkinsert.pgsql.constants de.bytefish.pgbulkinsert.pgsql.handlers de.bytefish.pgbulkinsert.row -
-
Uses of DataType in de.bytefish.pgbulkinsert.mapping
Methods in de.bytefish.pgbulkinsert.mapping with parameters of type DataType Modifier and Type Method Description protected <TProperty>
voidAbstractMapping. map(String columnName, DataType dataType, Function<TEntity,TProperty> propertyGetter)protected <TElementType,TCollectionType extends Collection<TElementType>>
voidAbstractMapping. mapCollection(String columnName, DataType dataType, Function<TEntity,TCollectionType> propertyGetter)protected <TElementType>
voidAbstractMapping. mapRange(String columnName, DataType dataType, Function<TEntity,Range<TElementType>> propertyGetter) -
Uses of DataType in de.bytefish.pgbulkinsert.pgsql.constants
Methods in de.bytefish.pgbulkinsert.pgsql.constants that return DataType Modifier and Type Method Description static DataTypeDataType. valueOf(String name)Returns the enum constant of this type with the specified name.static DataType[]DataType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.bytefish.pgbulkinsert.pgsql.constants with parameters of type DataType Modifier and Type Method Description static intObjectIdentifier. mapFrom(DataType type) -
Uses of DataType in de.bytefish.pgbulkinsert.pgsql.handlers
Methods in de.bytefish.pgbulkinsert.pgsql.handlers with parameters of type DataType Modifier and Type Method Description <TTargetType>
ValueHandlerProviderValueHandlerProvider. add(DataType targetType, IValueHandler<TTargetType> valueHandler)<TTargetType>
IValueHandler<TTargetType>IValueHandlerProvider. resolve(DataType targetType)<TTargetType>
IValueHandler<TTargetType>ValueHandlerProvider. resolve(DataType dataType) -
Uses of DataType in de.bytefish.pgbulkinsert.row
Methods in de.bytefish.pgbulkinsert.row with parameters of type DataType Modifier and Type Method Description <TElementType,TCollectionType extends Collection<TElementType>>
voidSimpleRow. setCollection(int ordinal, DataType type, TCollectionType value)<TElementType,TCollectionType extends Collection<TElementType>>
voidSimpleRow. setCollection(String columnName, DataType type, TCollectionType value)<TElementType>
voidSimpleRow. setRange(int ordinal, DataType dataType, Range<TElementType> value)<TElementType>
voidSimpleRow. setRange(String columnName, DataType dataType, Range<TElementType> value)<TTargetType>
voidSimpleRow. setValue(int ordinal, DataType type, TTargetType value)<TTargetType>
voidSimpleRow. setValue(String columnName, DataType type, TTargetType value)
-