public interface ResultSetMapper
DbEntityManager or
similar external class.
There should be only one instance of ResultSetMapper per ResultSet.
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Releases this ResultSet object's database and JDBC resources immediately instead of
waiting for this to happen when it is automatically closed.
|
java.sql.ResultSet |
getResultSet()
Return JDBC result set.
|
boolean |
next()
Moves the cursor down one row from its current position.
|
java.lang.Object[] |
parseObjects(java.lang.Class... types)
Parse objects from one result set row to specified types.
|
java.lang.Object |
parseOneObject(java.lang.Class... types)
Parse single object from result set row to specified type.
|
java.lang.Class[] |
resolveTables()
Resolves table names into the list of entity types.
|
boolean next()
void close()
java.sql.ResultSet getResultSet()
java.lang.Class[] resolveTables()
java.lang.Object[] parseObjects(java.lang.Class... types)
java.lang.Object parseOneObject(java.lang.Class... types)
parseObjects(Class[])Copyright © 2003-present Jodd Team