Uses of Interface
org.jdbi.v3.core.mapper.ColumnMapperFactory
Package
Description
The
array
package binds Java arrays and collections to SQL arrays, and
handles mapping array result types back to Java arrays and collections.
The
config
classes define a configuration registry starting from
each Jdbi
instance.mapper
s take the JDBC ResultSet and produce Java results.
The
postgres
plugin provides improved support for
java.time
, hstore
, uuid
, and enum
types when configured with a recent Postgres database server.-
Uses of ColumnMapperFactory in org.jdbi.v3.core.array
Modifier and TypeClassDescriptionclass
Maps SQL array columns into Java arrays or other Java container types. -
Uses of ColumnMapperFactory in org.jdbi.v3.core.config
Modifier and TypeMethodDescriptiondefault This
Configurable.registerColumnMapper
(ColumnMapperFactory factory) Convenience method forgetConfig(ColumnMappers.class).register(factory)
-
Uses of ColumnMapperFactory in org.jdbi.v3.core.mapper
Modifier and TypeClassDescriptionclass
Deprecated.will be replaced by an opt-out plugin to give the core no hardwired behaviorclass
Deprecated.UsegetConfig(Enums.class).setEnumStrategy(BY_NAME)
instead.class
Deprecated.UsegetConfig(Enums.class).setEnumStrategy(BY_ORDINAL)
instead.class
Factory that usesResultSet.getObject(int, Class)
to fetch values.Modifier and TypeMethodDescriptionstatic ColumnMapperFactory
GetObjectColumnMapperFactory.forClasses
(Class<?>... types) Creates aColumnMapperFactory
that accepts multiple types and maps them by callingResultSet.getObject(int, Class)
.static ColumnMapperFactory
GetObjectColumnMapperFactory.forClasses
(Set<Class<?>> types) Creates aColumnMapperFactory
that accepts multiple types and maps them by callingResultSet.getObject(int, Class)
.static ColumnMapperFactory
ColumnMapperFactory.of
(Type type, ColumnMapper<?> mapper) Create a ColumnMapperFactory from a givenColumnMapper
that matches a single Type exactly.Modifier and TypeMethodDescriptionstatic QualifiedColumnMapperFactory
QualifiedColumnMapperFactory.adapt
(ColumnMapperFactory factory) Adapts aColumnMapperFactory
into a QualifiedColumnMapperFactory.ColumnMappers.register
(ColumnMapperFactory factory) Register a column mapper factory. -
Uses of ColumnMapperFactory in org.jdbi.v3.postgres