Class ArrayListHandler
- java.lang.Object
-
- org.apache.commons.dbutils.handlers.AbstractListHandler<Object[]>
-
- org.apache.commons.dbutils.handlers.ArrayListHandler
-
- All Implemented Interfaces:
ResultSetHandler<List<Object[]>>
public class ArrayListHandler extends AbstractListHandler<Object[]>
ResultSetHandler
implementation that converts theResultSet
into aList
ofObject[]
s. This class is thread safe.- See Also:
ResultSetHandler
-
-
Constructor Summary
Constructors Constructor Description ArrayListHandler()
Creates a new instance of ArrayListHandler using aBasicRowProcessor
for conversions.ArrayListHandler(RowProcessor convert)
Creates a new instance of ArrayListHandler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Object[]
handleRow(ResultSet resultSet)
Convert row's columns into anObject[]
.-
Methods inherited from class org.apache.commons.dbutils.handlers.AbstractListHandler
handle
-
-
-
-
Constructor Detail
-
ArrayListHandler
public ArrayListHandler()
Creates a new instance of ArrayListHandler using aBasicRowProcessor
for conversions.
-
ArrayListHandler
public ArrayListHandler(RowProcessor convert)
Creates a new instance of ArrayListHandler.- Parameters:
convert
- TheRowProcessor
implementation to use when converting rows into Object[]s.
-
-
Method Detail
-
handleRow
protected Object[] handleRow(ResultSet resultSet) throws SQLException
Convert row's columns into anObject[]
.- Specified by:
handleRow
in classAbstractListHandler<Object[]>
- Parameters:
resultSet
-ResultSet
to process.- Returns:
Object[]
, nevernull
.- Throws:
SQLException
- if a database access error occurs- See Also:
AbstractListHandler.handle(ResultSet)
-
-