add some javadoc to KeyedResultList, Order, Page
This commit is contained in:
parent
65b9b43756
commit
eb6cb31fdf
|
@ -47,6 +47,10 @@ import java.util.List;
|
|||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @apiNote This class is similar to {@code jakarta.data.page.CursoredPage},
|
||||
* and is used by Hibernate Data Repositories to implement
|
||||
* Jakarta Data query methods.
|
||||
*
|
||||
* @since 6.5
|
||||
*
|
||||
* @see KeyedPage
|
||||
|
|
|
@ -20,7 +20,22 @@ import static org.hibernate.query.SortDirection.DESCENDING;
|
|||
* <p>
|
||||
* This is a convenience class which allows query result ordering
|
||||
* rules to be passed around the system before being applied to
|
||||
* a {@link Query} by calling {@link SelectionQuery#setOrder}.
|
||||
* a {@link Query} by calling {@link SelectionQuery#setOrder(Order)}.
|
||||
* <pre>
|
||||
* session.createSelectionQuery("from Book b join b.authors a where a.name = :name", Book.class)
|
||||
* .setParameter("name", authorName)
|
||||
* .setOrder(asc(Book_.publicationDate))
|
||||
* .getResultList();
|
||||
* </pre>
|
||||
* <p>
|
||||
* {@code Order}s may be stacked using {@link List#of} and
|
||||
* {@link SelectionQuery#setOrder(List)}.
|
||||
* <pre>
|
||||
* session.createSelectionQuery("from Book b join b.authors a where a.name = :name", Book.class)
|
||||
* .setParameter("name", authorName)
|
||||
* .setOrder(List.of(asc(Book_.publicationDate), desc(Book_.ssn)))
|
||||
* .getResultList();
|
||||
* </pre>
|
||||
* <p>
|
||||
* A parameter of a {@linkplain org.hibernate.annotations.processing.Find
|
||||
* finder method} or {@linkplain org.hibernate.annotations.processing.HQL
|
||||
|
@ -30,6 +45,10 @@ import static org.hibernate.query.SortDirection.DESCENDING;
|
|||
*
|
||||
* @param <X> The result type of the query to be sorted
|
||||
*
|
||||
* @apiNote This class is similar to {@code jakarta.data.Sort}, and is
|
||||
* used by Hibernate Data Repositories to implement Jakarta Data
|
||||
* query methods.
|
||||
*
|
||||
* @see SelectionQuery#setOrder(Order)
|
||||
* @see SelectionQuery#setOrder(java.util.List)
|
||||
*
|
||||
|
|
|
@ -10,11 +10,19 @@ import java.util.List;
|
|||
|
||||
/**
|
||||
* Identifies a page of query results by {@linkplain #size page size}
|
||||
* and {@linkplain #number page number}.
|
||||
* and {@linkplain #number page number}. This is an alternative to the
|
||||
* use of the JPA-defined operations {@link SelectionQuery#setFirstResult}
|
||||
* and {@link SelectionQuery#setMaxResults}.
|
||||
* <pre>
|
||||
* session.createSelectionQuery("from Book b join b.authors a where a.name = :name", Book.class)
|
||||
* .setParameter("name", authorName)
|
||||
* .setPage(Page.first(100))
|
||||
* .getResultList();
|
||||
* </pre>
|
||||
* <p>
|
||||
* This is a convenience class which allows a reference to a page of
|
||||
* results to be passed around the system before being applied to
|
||||
* a {@link Query} by calling {@link Query#setPage(Page)}.
|
||||
* results to be passed around the system before being applied to a
|
||||
* {@link Query} by calling {@link Query#setPage(Page)}.
|
||||
* <p>
|
||||
* A parameter of a {@linkplain org.hibernate.annotations.processing.Find
|
||||
* finder method} or {@linkplain org.hibernate.annotations.processing.HQL
|
||||
|
@ -23,6 +31,10 @@ import java.util.List;
|
|||
* For key-based pagination, call {@link #keyedBy(Order)} to obtain a
|
||||
* {@link KeyedPage}.
|
||||
*
|
||||
* @apiNote This class is similar to {@code jakarta.data.page.PageRequest},
|
||||
* and is used by Hibernate Data Repositories to implement
|
||||
* Jakarta Data query methods.
|
||||
*
|
||||
* @see SelectionQuery#setPage(Page)
|
||||
*
|
||||
* @since 6.3
|
||||
|
|
Loading…
Reference in New Issue