Package org.dalesbred.internal.result
Class InstantiatorRowMapper<T>
- java.lang.Object
-
- org.dalesbred.internal.result.InstantiatorRowMapper<T>
-
-
Constructor Summary
Constructors Constructor Description InstantiatorRowMapper(@NotNull java.lang.Class<T> cl, @NotNull InstantiatorProvider instantiatorProvider)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
mapRow(@NotNull java.sql.ResultSet resultSet)
Produces a single value based on current row.
-
-
-
Constructor Detail
-
InstantiatorRowMapper
public InstantiatorRowMapper(@NotNull @NotNull java.lang.Class<T> cl, @NotNull @NotNull InstantiatorProvider instantiatorProvider)
-
-
Method Detail
-
mapRow
public T mapRow(@NotNull @NotNull java.sql.ResultSet resultSet) throws java.sql.SQLException
Description copied from interface:RowMapper
Produces a single value based on current row.The implementation should not call
ResultSet.next()
or other methods to move the current position of theResultSet
, caller is responsible for that.
-
-