Package com.glyart.asql.common.defaults
Class DefaultExtractor<T>
- java.lang.Object
-
- com.glyart.asql.common.defaults.DefaultExtractor<T>
-
- All Implemented Interfaces:
ResultSetExtractor<List<T>>
public class DefaultExtractor<T> extends Object implements ResultSetExtractor<List<T>>
-
-
Constructor Summary
Constructors Constructor Description DefaultExtractor(RowMapper<T> mapper)
DefaultExtractor(RowMapper<T> mapper, int limit)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<T>
extractData(ResultSet rs)
Implementations of this method must provide the processing logic (data extraction) of the entire ResultSet.
-
-
-
Method Detail
-
extractData
@Nullable public List<T> extractData(@NotNull ResultSet rs) throws SQLException
Description copied from interface:ResultSetExtractor
Implementations of this method must provide the processing logic (data extraction) of the entire ResultSet.- Specified by:
extractData
in interfaceResultSetExtractor<T>
- Parameters:
rs
- the ResultSet to extract data from. Implementations don't need to close this: it will be closed by DataTemplate- Returns:
- an object result or null if it's not available
- Throws:
SQLException
- if an SQLException is encountered while trying to navigate the ResultSet
-
-