| Package | Description |
|---|---|
| org.jdbi.v3.core.mapper |
mappers take the JDBC ResultSet and produce Java results. |
| Modifier and Type | Method and Description |
|---|---|
ColumnMappers |
ColumnMappers.createCopy() |
ColumnMappers |
ColumnMappers.register(ColumnMapper<?> mapper)
Register a column mapper which will have its parameterized type inspected to determine what it maps to.
|
ColumnMappers |
ColumnMappers.register(ColumnMapperFactory factory)
Register a column mapper factory.
|
<T> ColumnMappers |
ColumnMappers.register(GenericType<T> type,
ColumnMapper<T> mapper)
Register a column mapper for a given explicit
GenericType
Column mappers may be reused by RowMapper to map individual columns. |
<T> ColumnMappers |
ColumnMappers.register(QualifiedType<T> type,
ColumnMapper<T> mapper)
Register a column mapper for a given
QualifiedType
Column mappers may be reused by RowMapper to map individual columns. |
ColumnMappers |
ColumnMappers.register(Type type,
ColumnMapper<?> mapper)
|
Copyright © 2019. All rights reserved.