JavaScript is disabled on your browser.
Skip navigation links
Overview
Class
Use
Tree
Deprecated
Index
Search
Help
org.hibernate.result
ResultSetOutput
Contents
Description
Method Summary
Method Details
getResultList()
getSingleResult()
Hide sidebar
Show sidebar
Interface ResultSetOutput<
T
>
All Superinterfaces:
Output
public interface
ResultSetOutput<T>
extends
Output
Models a return that is a result set.
Method Summary
All Methods
Instance Methods
Abstract Methods
Modifier and Type
Method
Description
List
<
T
>
getResultList
()
Consume the underlying
ResultSet
and return the resulting List.
Object
getSingleResult
()
Consume the underlying
ResultSet
with the expectation that there is just a single level of root returns.
Methods inherited from interface
Output
isResultSet
Method Details
getResultList
List
<
T
>
getResultList
()
Consume the underlying
ResultSet
and return the resulting List.
Returns:
The consumed ResultSet values.
getSingleResult
Object
getSingleResult
()
Consume the underlying
ResultSet
with the expectation that there is just a single level of root returns.
Returns:
The single result.