Uses of Interface
org.springframework.data.domain.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
-
Uses of Page in org.springframework.data.domain.jaxb
Modifier and TypeMethodDescriptionReturn additional links that shall be added to theSpringDataJaxb.PageDto
. -
Uses of Page in org.springframework.data.geo
-
Uses of Page in org.springframework.data.querydsl
-
Uses of Page in org.springframework.data.repository
-
Uses of Page in org.springframework.data.repository.history
-
Uses of Page in org.springframework.data.repository.query
-
Uses of Page in org.springframework.data.support
Modifier and TypeMethodDescriptionstatic <T> Page<T>
PageableExecutionUtils.getPage
(List<T> content, Pageable pageable, LongSupplier totalSupplier) -
Uses of Page in org.springframework.data.web
Modifier 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.ModifierConstructorDescriptionPagedModel
(Page<T> page) Creates a newPagedModel
for the givenPage
.