Uses of Record Class
st.orm.Page

Packages that use Page
Package
Description
 
 
  • Uses of Page in st.orm.repository

    Methods in st.orm.repository that return Page
    Modifier and Type
    Method
    Description
    EntityRepository.page(int pageNumber, int pageSize)
    Returns a page of entities using offset-based pagination.
    EntityRepository.page(Pageable pageable)
    Returns a page of entities using offset-based pagination.
    ProjectionRepository.page(int pageNumber, int pageSize)
    Returns a page of projections using offset-based pagination.
    ProjectionRepository.page(Pageable pageable)
    Returns a page of projections using offset-based pagination.
    EntityRepository.pageRef(int pageNumber, int pageSize)
    Returns a page of entity refs using offset-based pagination.
    EntityRepository.pageRef(Pageable pageable)
    Returns a page of entity refs using offset-based pagination.
    ProjectionRepository.pageRef(int pageNumber, int pageSize)
    Returns a page of projection refs using offset-based pagination.
    ProjectionRepository.pageRef(Pageable pageable)
    Returns a page of projection refs using offset-based pagination.
  • Uses of Page in st.orm.template

    Methods in st.orm.template that return Page
    Modifier and Type
    Method
    Description
    final Page<R>
    QueryBuilder.page(int pageNumber, int pageSize)
    Executes the query and returns a Page of results using offset-based pagination.
    final Page<R>
    QueryBuilder.page(Pageable pageable)
    Executes the query and returns a Page of results using offset-based pagination.
    final Page<R>
    QueryBuilder.page(Pageable pageable, long totalCount)
    Executes the query and returns a Page of results using offset-based pagination with a pre-computed total count.