Uses of Interface
io.helidon.data.PageRequest
Packages that use PageRequest
-
Uses of PageRequest in io.helidon.data
Classes in io.helidon.data with type parameters of type PageRequestModifier and TypeClassDescriptionstatic class
PageRequest.BuilderBase<BUILDER extends PageRequest.BuilderBase<BUILDER,
PROTOTYPE>, PROTOTYPE extends PageRequest> Fluent API builder base forPageRequest
.Classes in io.helidon.data that implement PageRequestModifier and TypeClassDescriptionprotected static class
Generated implementation of the prototype, can be extended by descendant prototype implementations.Methods in io.helidon.data that return PageRequestModifier and TypeMethodDescriptionPageRequest.Builder.build()
PageRequest.Builder.buildPrototype()
static PageRequest
PageRequest.create()
Create a new instance with default values.static PageRequest
PageRequest.create
(int page) Create new instance of pageable query result request with default size of10
and no order definitions.static PageRequest
PageRequest.create
(int page, int size) Create new instance of pageable query result request with no order definitions.Slice.request()
Pageable query result request of current page.Methods in io.helidon.data with parameters of type PageRequestModifier and TypeMethodDescriptionstatic PageRequest.Builder
PageRequest.builder
(PageRequest instance) Create a new fluent API builder from an existing instance.static <T> Page
<T> Page.create
(PageRequest request, List<T> content, int totalSize) Create pageable query result as page with total size of the result.static <T> Slice
<T> Slice.create
(PageRequest request, List<T> content) Create pageable query result as page without total size of the result.PageRequest.BuilderBase.from
(PageRequest prototype) Update this builder from an existing prototype instance.Data.PageableRepository.pages
(PageRequest pageable) ReturnPage
with all entities of theE
type.Data.PageableRepository.slices
(PageRequest pageable) ReturnSlice
with all entities of theE
type.