- java.lang.Object
- 
- org.jooq.tools.jdbc.JDBC41ResultSet
 
- 
- Direct Known Subclasses:
- DefaultResultSet,- MockResultSet
 
 public abstract class JDBC41ResultSet extends Object Add JDBC 4.1 API compliance to a JDBC 4.0ResultSet.Extend this type if you want to compile ResultSetimplementations on both JDBC 4.0 (JDK 6) and 4.1 (JDK 7).- Author:
- Lukas Eder
 
- 
- 
Constructor SummaryConstructors Constructor Description JDBC41ResultSet()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> TgetObject(int columnIndex, Class<T> type)<T> TgetObject(String columnLabel, Class<T> type)
 
- 
- 
- 
Method Detail- 
getObjectpublic <T> T getObject(int columnIndex, Class<T> type) throws SQLException- Throws:
- SQLException
 
 - 
getObjectpublic <T> T getObject(String columnLabel, Class<T> type) throws SQLException - Throws:
- SQLException
 
 
- 
 
-