Uses of Record Class
cloud.opencode.base.core.page.Page

Packages that use Page
Package
Description
Pagination model and query utilities.
  • Uses of Page in cloud.opencode.base.core.page

    Methods in cloud.opencode.base.core.page that return Page
    Modifier and Type
    Method
    Description
    static <T> Page<T>
    Page.empty(long size)
    Creates an empty Page with no records and zero total.
    <U> Page<U>
    Page.map(Function<T,U> mapper)
    Maps the records of this page using the given function, preserving pagination metadata.
    static <T> Page<T>
    Page.of(long current, long size, long total, List<T> records)
    Creates a new Page with the given parameters.
    <T> Page<T>
    PageRequest.toPage()
    Creates an empty Page matching this request's page number and size.