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>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionmap(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, waitMethods inherited from interface org.jdbi.v3.core.mapper.RowMapper
init, specialize
-
Field Details
-
message
-
-
Constructor Details
-
UnmatchedConstructorMapper
UnmatchedConstructorMapper(String message)
-
-
Method Details
-
map
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.- Specified by:
mapin interfaceRowMapper<T>- Parameters:
rs- the result set being iteratedctx- the statement context- Returns:
- the value to produce for this row
- Throws:
SQLException- if anything goes wrong go ahead and let this percolate; Jdbi will handle it
-