Uses of Interface
org.hibernate.ScrollableResults
-
Packages that use ScrollableResults Package Description org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters. -
-
Uses of ScrollableResults in org.hibernate.internal
Classes in org.hibernate.internal that implement ScrollableResults Modifier and Type Class Description class
AbstractScrollableResults<R>
Base implementation of the ScrollableResults interface intended for sharing betweenScrollableResultsImpl
andFetchingScrollableResultsImpl
class
EmptyScrollableResults
class
FetchingScrollableResultsImpl<R>
Implementation of ScrollableResults which can handle collection fetches.class
ScrollableResultsImpl<R>
Standard ScrollableResults implementation. -
Uses of ScrollableResults in org.hibernate.query
Methods in org.hibernate.query that return ScrollableResults Modifier and Type Method Description ScrollableResults<R>
Query. scroll()
Execute the query and return the results in a scrollable form.ScrollableResults<R>
Query. scroll(ScrollMode scrollMode)
Execute the query and return the results in a scrollable form.ScrollableResults<R>
SelectionQuery. scroll()
Returns scrollable access to the query results.ScrollableResults<R>
SelectionQuery. scroll(ScrollMode scrollMode)
Returns scrollable access to the query results. -
Uses of ScrollableResults in org.hibernate.query.spi
Subinterfaces of ScrollableResults in org.hibernate.query.spi Modifier and Type Interface Description interface
ScrollableResultsImplementor<R>
-