Package org.jdbi.v3.core.mapper.reflect
Class ConstructorMapper.UnmatchedConstructorMapper<T>
- java.lang.Object
-
- org.jdbi.v3.core.mapper.reflect.ConstructorMapper.UnmatchedConstructorMapper<T>
-
- All Implemented Interfaces:
RowMapper<T>
- Enclosing class:
- ConstructorMapper<T>
static class ConstructorMapper.UnmatchedConstructorMapper<T> extends java.lang.Object implements RowMapper<T>
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringmessage
-
Constructor Summary
Constructors Constructor Description UnmatchedConstructorMapper(java.lang.String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Tmap(java.sql.ResultSet rs, StatementContext ctx)Map the current row of the result set.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jdbi.v3.core.mapper.RowMapper
init, specialize
-
-
-
-
Method Detail
-
map
public T map(java.sql.ResultSet rs, StatementContext ctx) throws java.sql.SQLException
Description copied from interface:RowMapperMap the current row of the result set. This method should not cause the result set to advance; allow Jdbi to do that, please.
-
-