Uses of Interface
org.apache.commons.dbutils.RowProcessor
Packages that use RowProcessor
Package
Description
DbUtils is a small set of classes designed to make working with JDBC easier.
Implementations of the org.apache.commons.dbutils.ResultSetHandler interface.
-
Uses of RowProcessor in org.apache.commons.dbutils
Classes in org.apache.commons.dbutils that implement RowProcessorModifier and TypeClassDescriptionclass
Basic implementation of theRowProcessor
interface.Constructors in org.apache.commons.dbutils with parameters of type RowProcessorModifierConstructorDescriptionResultSetIterator
(ResultSet resultSet, RowProcessor convert) Constructor for ResultSetIterator. -
Uses of RowProcessor in org.apache.commons.dbutils.handlers
Fields in org.apache.commons.dbutils.handlers declared as RowProcessorModifier and TypeFieldDescriptionprotected final RowProcessor
KeyedHandler.convert
The RowProcessor implementation to use when converting rows into Objects.Constructors in org.apache.commons.dbutils.handlers with parameters of type RowProcessorModifierConstructorDescriptionArrayHandler
(RowProcessor convert) Creates a new instance of ArrayHandler.ArrayListHandler
(RowProcessor convert) Creates a new instance of ArrayListHandler.BeanHandler
(Class<? extends T> type, RowProcessor convert) Creates a new instance of BeanHandler.BeanListHandler
(Class<? extends T> type, RowProcessor convert) Creates a new instance of BeanListHandler.BeanMapHandler
(Class<V> type, RowProcessor convert) Creates a new instance of BeanMapHandler.KeyedHandler
(RowProcessor convert) Creates a new instance of KeyedHandler.MapHandler
(RowProcessor convert) Creates a new instance of MapHandler.MapListHandler
(RowProcessor convert) Creates a new instance of MapListHandler.