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[]>
ResultSetHandlerimplementation that converts theResultSetinto aListofObject[]s. This class is thread safe.- See Also:
ResultSetHandler
-
-
Constructor Summary
Constructors Constructor Description ArrayListHandler()Creates a new instance of ArrayListHandler using aBasicRowProcessorfor 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 aBasicRowProcessorfor conversions.
-
ArrayListHandler
public ArrayListHandler(RowProcessor convert)
Creates a new instance of ArrayListHandler.- Parameters:
convert- TheRowProcessorimplementation 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:
handleRowin classAbstractListHandler<Object[]>- Parameters:
resultSet-ResultSetto process.- Returns:
Object[], nevernull.- Throws:
SQLException- if a database access error occurs- See Also:
AbstractListHandler.handle(ResultSet)
-
-