Interface RowMapperIF<T>
public interface RowMapperIF<T>
EXPERIMENTAL: Interface to be implemented by row mappers used by
the queryForList method on QueryWrapper.
- Since:
- 3.4.4
-
Method Summary
Modifier and TypeMethodDescriptionmapRow(QueryResultIF result, int rowno) EXPERIMENTAL: This method is called once for each row in query results, and the returned object is added to the list returned by queryForList.
-
Method Details
-
mapRow
EXPERIMENTAL: This method is called once for each row in query results, and the returned object is added to the list returned by queryForList.- Parameters:
result- the query result objectrowno- the number of this row in the current query result (in zero-based counting)- Returns:
- an object to put into the query result list
-