Uses of Interface
org.springframework.data.domain.Page
Packages that use Page
Package
Description
Central domain abstractions especially to be used in combination with the
Repository
abstraction.Central domain abstractions especially to be used in combination with the
Repository
abstraction.Value types representing geo-spatial concepts.
Querydsl integration support classes.
Central interfaces for repository abstraction.
API for repositories using historiography.
Support classes to work with query methods.
Core support classes.
Integration with Spring MVC.
-
Uses of Page in org.springframework.data.domain
Classes in org.springframework.data.domain that implement PageMethods in org.springframework.data.domain that return Page -
Uses of Page in org.springframework.data.domain.jaxb
Methods in org.springframework.data.domain.jaxb that return PageMethods in org.springframework.data.domain.jaxb with parameters of type PageModifier and TypeMethodDescriptionReturn additional links that shall be added to theSpringDataJaxb.PageDto
. -
Uses of Page in org.springframework.data.geo
Classes in org.springframework.data.geo that implement Page -
Uses of Page in org.springframework.data.querydsl
Methods in org.springframework.data.querydsl that return Page -
Uses of Page in org.springframework.data.repository
Methods in org.springframework.data.repository that return Page -
Uses of Page in org.springframework.data.repository.history
Methods in org.springframework.data.repository.history that return Page -
Uses of Page in org.springframework.data.repository.query
Methods in org.springframework.data.repository.query that return PageMethods in org.springframework.data.repository.query that return types with arguments of type Page -
Uses of Page in org.springframework.data.support
Methods in org.springframework.data.support that return PageModifier and TypeMethodDescriptionstatic <T> Page<T>
PageableExecutionUtils.getPage
(List<T> content, Pageable pageable, LongSupplier totalSupplier) Methods in org.springframework.data.support that return types with arguments of type Page -
Uses of Page in org.springframework.data.web
Methods in org.springframework.data.web with parameters of type PageModifier and TypeMethodDescriptionprotected <R extends RepresentationModel<?>,
S>
PagedModel<R>PagedResourcesAssembler.createPagedModel
(List<R> resources, PagedModel.PageMetadata metadata, Page<S> page) Creates thePagedModel
to be equipped with pagination links downstream.PagedModel<?>
PagedResourcesAssembler.toEmptyModel
(Page<?> page, Class<?> type) Creates aPagedModel
with an empt collectionEmbeddedWrapper
for the given domain type.PagedModel<?>
PagedResourcesAssembler.toEmptyModel
(Page<?> page, Class<?> type, Link link) Creates aPagedModel
with an empt collectionEmbeddedWrapper
for the given domain type.Creates a newPagedModel
by converting the givenPage
into aPagedModel.PageMetadata
instance and wrapping the contained elements intoPagedModel
instances.<R extends RepresentationModel<?>>
PagedModel<R>PagedResourcesAssembler.toModel
(Page<T> page, RepresentationModelAssembler<T, R> assembler) Creates a newPagedModel
by converting the givenPage
into aPagedModel.PageMetadata
instance and using the givenPagedModel
to turn elements of thePage
into resources.<R extends RepresentationModel<?>>
PagedModel<R>PagedResourcesAssembler.toModel
(Page<T> page, RepresentationModelAssembler<T, R> assembler, Link link) Creates a newPagedModel
by converting the givenPage
into aPagedModel.PageMetadata
instance and using the givenPagedModel
to turn elements of thePage
into resources.Constructors in org.springframework.data.web with parameters of type PageModifierConstructorDescriptionPagedModel
(Page<T> page) Creates a newPagedModel
for the givenPage
.