Package org.hibernate.result
Interface ResultSetOutput
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.ListgetResultList()Consume the underlyingResultSetand return the resulting List.java.lang.ObjectgetSingleResult()Consume the underlyingResultSetwith the expectation that there is just a single level of root returns.-
Methods inherited from interface org.hibernate.result.Output
isResultSet
-
-
-
-
Method Detail
-
getResultList
java.util.List getResultList()
Consume the underlyingResultSetand return the resulting List.- Returns:
- The consumed ResultSet values.
-
getSingleResult
java.lang.Object getSingleResult()
Consume the underlyingResultSetwith the expectation that there is just a single level of root returns.- Returns:
- The single result.
-
-