Uses of Class
org.hibernate.query.KeyedPage
-
Packages that use KeyedPage Package Description org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.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.org.hibernate.query.sql.internal Implementation of the SPIs for native SQL query support.org.hibernate.query.sqm.spi SPI-level SQM contracts -
-
Uses of KeyedPage in org.hibernate.procedure.internal
Methods in org.hibernate.procedure.internal with parameters of type KeyedPage Modifier and Type Method Description KeyedResultList<R>
ProcedureCallImpl. getKeyedResultList(KeyedPage<R> page)
-
Uses of KeyedPage in org.hibernate.query
Methods in org.hibernate.query that return KeyedPage Modifier and Type Method Description KeyedPage<R>
KeyedResultList. getNextPage()
The specification of the next page of results, if there are more results, ornull
if it is known that there are no more results after this page.KeyedPage<R>
KeyedResultList. getPage()
The size and approximate page number of the current page.KeyedPage<R>
KeyedResultList. getPreviousPage()
The specification of the previous page of results, ornull
if it is known that this is the first page.<R> KeyedPage<R>
Page. keyedBy(List<Order<? super R>> keyDefinition)
Obtain a key-based specification of this page.<R> KeyedPage<R>
Page. keyedBy(Order<? super R> keyDefinition)
Obtain a key-based specification of this page.KeyedPage<R>
KeyedPage. nextPage(List<Comparable<?>> keyOfLastResultOnThisPage)
Obtain a specification of the next page of results, which is to be located using the given key, which must be the key of the last result on this page.KeyedPage<R>
KeyedPage. previousPage(List<Comparable<?>> keyOfFirstResultOnThisPage)
Obtain a specification of the previous page of results, which is to be located using the given key, which must be the key of the first result on this page.KeyedPage<R>
KeyedPage. withKey(List<Comparable<?>> key, KeyedPage.KeyInterpretation interpretation)
Attach the given key to the specification of this page, with the given interpretation.Methods in org.hibernate.query with parameters of type KeyedPage Modifier and Type Method Description KeyedResultList<R>
SelectionQuery. getKeyedResultList(KeyedPage<R> page)
Execute the query and return the results for the given page, using key-based pagination.Constructors in org.hibernate.query with parameters of type KeyedPage Constructor Description KeyedResultList(List<R> resultList, List<List<?>> keyList, KeyedPage<R> page, KeyedPage<R> nextPage, KeyedPage<R> previousPage)
-
Uses of KeyedPage in org.hibernate.query.spi
Methods in org.hibernate.query.spi with parameters of type KeyedPage Modifier and Type Method Description KeyedResultList<R>
AbstractQuery. getKeyedResultList(KeyedPage<R> keyedPage)
-
Uses of KeyedPage in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal with parameters of type KeyedPage Modifier and Type Method Description KeyedResultList<R>
NativeQueryImpl. getKeyedResultList(KeyedPage<R> page)
-
Uses of KeyedPage in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type KeyedPage Modifier and Type Method Description KeyedResultList<R>
DelegatingSqmSelectionQueryImplementor. getKeyedResultList(KeyedPage<R> page)
-