|
Spring Data Core | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Page | |
---|---|
org.springframework.data.domain | Central domain abstractions especially to be used in combination with the Repository abstraction. |
org.springframework.data.domain.jaxb | Central domain abstractions especially to be used in combination with the Repository abstraction. |
org.springframework.data.querydsl | Querydsl integration support classes. |
org.springframework.data.repository | Central interfaces for repository abstraction. |
org.springframework.data.repository.history | API for repositories using historiography. |
org.springframework.data.web | Integration with Spring MVC. |
Uses of Page in org.springframework.data.domain |
---|
Classes in org.springframework.data.domain that implement Page | |
---|---|
class |
PageImpl<T>
Basic Page implementation. |
Uses of Page in org.springframework.data.domain.jaxb |
---|
Methods in org.springframework.data.domain.jaxb that return Page | |
---|---|
Page<Object> |
PageAdapter.unmarshal(SpringDataJaxb.PageDto v)
|
Methods in org.springframework.data.domain.jaxb with parameters of type Page | |
---|---|
protected List<org.springframework.hateoas.Link> |
PageAdapter.getLinks(Page<?> source)
Return additional links that shall be added to the SpringDataJaxb.PageDto . |
SpringDataJaxb.PageDto |
PageAdapter.marshal(Page<Object> source)
|
Uses of Page in org.springframework.data.querydsl |
---|
Methods in org.springframework.data.querydsl that return Page | |
---|---|
Page<T> |
QueryDslPredicateExecutor.findAll(com.mysema.query.types.Predicate predicate,
Pageable pageable)
Returns a Page of entities matching the given Predicate . |
Uses of Page in org.springframework.data.repository |
---|
Methods in org.springframework.data.repository that return Page | |
---|---|
Page<T> |
PagingAndSortingRepository.findAll(Pageable pageable)
Returns a Page of entities meeting the paging restriction provided in the Pageable object. |
Uses of Page in org.springframework.data.repository.history |
---|
Methods in org.springframework.data.repository.history that return Page | |
---|---|
Page<Revision<N,T>> |
RevisionRepository.findRevisions(ID id,
Pageable pageable)
Returns a Page of revisions for the entity with the given id. |
Uses of Page in org.springframework.data.web |
---|
Methods in org.springframework.data.web with parameters of type Page | ||
---|---|---|
org.springframework.hateoas.PagedResources<org.springframework.hateoas.Resource<T>> |
PagedResourcesAssembler.toResource(Page<T> entity)
|
|
org.springframework.hateoas.PagedResources<org.springframework.hateoas.Resource<T>> |
PagedResourcesAssembler.toResource(Page<T> page,
org.springframework.hateoas.Link selfLink)
Creates a new PagedResources by converting the given Page into a PagedResources.PageMetadata instance and
wrapping the contained elements into Resource instances. |
|
|
PagedResourcesAssembler.toResource(Page<T> page,
org.springframework.hateoas.ResourceAssembler<T,R> assembler)
Creates a new PagedResources by converting the given Page into a PagedResources.PageMetadata instance and
using the given ResourceAssembler to turn elements of the Page into resources. |
|
|
PagedResourcesAssembler.toResource(Page<T> page,
org.springframework.hateoas.ResourceAssembler<T,R> assembler,
org.springframework.hateoas.Link link)
Creates a new PagedResources by converting the given Page into a PagedResources.PageMetadata instance and
using the given ResourceAssembler to turn elements of the Page into resources. |
|
Spring Data Core | |||||||||
PREV NEXT | FRAMES NO FRAMES |