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.Fields in org.apache.commons.dbutils declared as RowProcessorModifier and TypeFieldDescriptionprivate final RowProcessor
ResultSetIterator.convert
The processor to use when converting a row into an Object[].Constructors in org.apache.commons.dbutils with parameters of type RowProcessorModifierConstructorDescriptionResultSetIterator
(ResultSet rs, 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 TypeFieldDescriptionprivate final RowProcessor
ArrayHandler.convert
The RowProcessor implementation to use when converting rows into arrays.private final RowProcessor
ArrayListHandler.convert
The RowProcessor implementation to use when converting rows into Object[]s.private final RowProcessor
BeanHandler.convert
The RowProcessor implementation to use when converting rows into beans.private final RowProcessor
BeanListHandler.convert
The RowProcessor implementation to use when converting rows into beans.private final RowProcessor
BeanMapHandler.convert
The RowProcessor implementation to use when converting rows into Objects.protected final RowProcessor
KeyedHandler.convert
The RowProcessor implementation to use when converting rows into Objects.private final RowProcessor
MapHandler.convert
The RowProcessor implementation to use when converting rows into Maps.private final RowProcessor
MapListHandler.convert
The RowProcessor implementation to use when converting rows into Maps.(package private) static final RowProcessor
ArrayHandler.ROW_PROCESSOR
Singleton processor instance that handlers share to save memory.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.private
BeanMapHandler
(Class<V> type, RowProcessor convert, int columnIndex, String columnName) Private HelperKeyedHandler
(RowProcessor convert) Creates a new instance of KeyedHandler.private
KeyedHandler
(RowProcessor convert, int columnIndex, String columnName) Private HelperMapHandler
(RowProcessor convert) Creates a new instance of MapHandler.MapListHandler
(RowProcessor convert) Creates a new instance of MapListHandler.