Uses of Class
org.jdbi.v3.core.mapper.ColumnMappers
Package
Description
mapper
s take the JDBC ResultSet and produce Java results.-
Uses of ColumnMappers in org.jdbi.v3.core.mapper
Modifier and TypeMethodDescriptionColumnMappers.createCopy()
ColumnMappers.register
(Type type, ColumnMapper<?> mapper) <T> ColumnMappers
ColumnMappers.register
(GenericType<T> type, ColumnMapper<T> mapper) Register a column mapper for a given explicitGenericType
Column mappers may be reused byRowMapper
to map individual columns.ColumnMappers.register
(ColumnMapper<?> mapper) Register a column mapper which will have its parameterized type inspected to determine what it maps to.ColumnMappers.register
(ColumnMapperFactory factory) Register a column mapper factory.ColumnMappers.register
(QualifiedColumnMapperFactory factory) Register a qualified column mapper factory.<T> ColumnMappers
ColumnMappers.register
(QualifiedType<T> type, ColumnMapper<T> mapper) Register a column mapper for a givenQualifiedType
Column mappers may be reused byRowMapper
to map individual columns.