Class PojoMapper.BoundPojoMapper
- java.lang.Object
-
- org.jdbi.v3.core.mapper.reflect.internal.PojoMapper.BoundPojoMapper
-
- All Implemented Interfaces:
RowMapper<T>
- Enclosing class:
- PojoMapper<T>
class PojoMapper.BoundPojoMapper extends java.lang.Object implements RowMapper<T>
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<PojoMapper.PropertyData<T>>propList
-
Constructor Summary
Constructors Constructor Description BoundPojoMapper(java.util.List<PojoMapper.PropertyData<T>> propList)
-
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
-
propList
private final java.util.List<PojoMapper.PropertyData<T>> propList
-
-
Constructor Detail
-
BoundPojoMapper
BoundPojoMapper(java.util.List<PojoMapper.PropertyData<T>> propList)
-
-
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
-
-