Package org.jdbi.v3.core.mapper.reflect
Class ConstructorMapper.BoundConstructorMapper
- java.lang.Object
-
- org.jdbi.v3.core.mapper.reflect.ConstructorMapper.BoundConstructorMapper
-
- All Implemented Interfaces:
RowMapper<T>
- Enclosing class:
- ConstructorMapper<T>
class ConstructorMapper.BoundConstructorMapper extends java.lang.Object implements RowMapper<T>
-
-
Field Summary
Fields Modifier and Type Field Description private intcountprivate java.util.List<ConstructorMapper.ParameterData>paramData
-
Constructor Summary
Constructors Constructor Description BoundConstructorMapper(java.util.List<ConstructorMapper.ParameterData> paramData)
-
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.java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.jdbi.v3.core.mapper.RowMapper
init, specialize
-
-
-
-
Field Detail
-
paramData
private final java.util.List<ConstructorMapper.ParameterData> paramData
-
count
private final int count
-
-
Constructor Detail
-
BoundConstructorMapper
BoundConstructorMapper(java.util.List<ConstructorMapper.ParameterData> paramData)
-
-
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.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-