| Interface | Description |
|---|---|
| ColumnMapper<T> |
Maps result set columns to objects.
|
| ColumnMapperFactory |
Factory interface used to produce column mappers.
|
| RowMapper<T> |
Maps result set rows to objects.
|
| RowMapperFactory |
Factory interface used to produce row mappers.
|
| Class | Description |
|---|---|
| BuiltInMapperFactory |
Column mapper factory which knows how to map JDBC-recognized types, along with some other well-known types
from the JDK.
|
| ColumnMappers | |
| EnumByNameMapperFactory |
Produces enum column mappers, which map enums from varchar columns using
Enum.valueOf(Class, String). |
| EnumByOrdinalMapperFactory |
Produces enum column mappers, which map enums from numeric columns according to ordinal value.
|
| EnumMapper<E extends Enum<E>> | |
| JoinRowMapper |
A
RowMapper implementation to easily compose existing
RowMappers. |
| JoinRowMapper.JoinRow |
Holder for a single joined row.
|
| MapMapper |
Yo dawg, I heard you like maps, so I made you a mapper that maps rows into
Map<String,Object>. |
| RowMappers | |
| SingleColumnMapper<T> |
Adapts a
ColumnMapper into a RowMapper by mapping a single column. |
| Exception | Description |
|---|---|
| MappingException | |
| NoSuchMapperException |
Copyright © 2017. All rights reserved.