Uses of Interface
org.apache.commons.dbutils.RowProcessor

Packages that use RowProcessor
org.apache.commons.dbutils   
org.apache.commons.dbutils.handlers   
 

Uses of RowProcessor in org.apache.commons.dbutils
 

Classes in org.apache.commons.dbutils that implement RowProcessor
 class BasicRowProcessor
          Basic implementation of the RowProcessor interface.
 

Fields in org.apache.commons.dbutils declared as RowProcessor
private  RowProcessor ResultSetIterator.convert
          The processor to use when converting a row into an Object[].
 

Constructors in org.apache.commons.dbutils with parameters of type RowProcessor
ResultSetIterator(java.sql.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 RowProcessor
private  RowProcessor ArrayHandler.convert
          The RowProcessor implementation to use when converting rows into arrays.
private  RowProcessor ArrayListHandler.convert
          The RowProcessor implementation to use when converting rows into Object[]s.
private  RowProcessor BeanHandler.convert
          The RowProcessor implementation to use when converting rows into beans.
private  RowProcessor BeanListHandler.convert
          The RowProcessor implementation to use when converting rows into beans.
private  RowProcessor MapHandler.convert
          The RowProcessor implementation to use when converting rows into Maps.
private  RowProcessor MapListHandler.convert
          The RowProcessor implementation to use when converting rows into Maps.
 

Constructors in org.apache.commons.dbutils.handlers with parameters of type RowProcessor
ArrayHandler(RowProcessor convert)
          Creates a new instance of ArrayHandler.
ArrayListHandler(RowProcessor convert)
          Creates a new instance of ArrayListHandler.
BeanHandler(java.lang.Class type, RowProcessor convert)
          Creates a new instance of BeanHandler.
BeanListHandler(java.lang.Class type, RowProcessor convert)
          Creates a new instance of BeanListHandler.
MapHandler(RowProcessor convert)
          Creates a new instance of MapHandler.
MapListHandler(RowProcessor convert)
          Creates a new instance of MapListHandler.