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 TypeClassDescriptionclassBasic implementation of theRowProcessorinterface.Fields in org.apache.commons.dbutils declared as RowProcessorModifier and TypeFieldDescriptionprivate final RowProcessorResultSetIterator.convertThe 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 RowProcessorArrayHandler.convertThe RowProcessor implementation to use when converting rows into arrays.private final RowProcessorArrayListHandler.convertThe RowProcessor implementation to use when converting rows into Object[]s.private final RowProcessorBeanHandler.convertThe RowProcessor implementation to use when converting rows into beans.private final RowProcessorBeanListHandler.convertThe RowProcessor implementation to use when converting rows into beans.private final RowProcessorBeanMapHandler.convertThe RowProcessor implementation to use when converting rows into Objects.protected final RowProcessorKeyedHandler.convertThe RowProcessor implementation to use when converting rows into Objects.private final RowProcessorMapHandler.convertThe RowProcessor implementation to use when converting rows into Maps.private final RowProcessorMapListHandler.convertThe RowProcessor implementation to use when converting rows into Maps.(package private) static final RowProcessorArrayHandler.ROW_PROCESSORSingleton 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.privateBeanMapHandler(Class<V> type, RowProcessor convert, int columnIndex, String columnName) Private HelperKeyedHandler(RowProcessor convert) Creates a new instance of KeyedHandler.privateKeyedHandler(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.