Uses of Class
io.quarkus.panache.common.Page

Packages that use Page
Package
Description
 
  • Uses of Page in io.quarkus.panache.common

    Methods in io.quarkus.panache.common that return Page
    Modifier and Type
    Method
    Description
    Page.first()
    Returns a new page with the first page index (0) and the same size, or this page if it is the first page.
    Page.index(int newIndex)
    Returns a new page at the given page index and the same size, or this page if the page index is the same.
    Page.next()
    Returns a new page with the next page index and the same size.
    static Page
    Page.of(int index, int size)
    Builds a page of the given index and size.
    static Page
    Page.ofSize(int size)
    Builds a page of the given size.
    Page.previous()
    Returns a new page with the previous page index and the same size, or this page if it is the first page.