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 classPageRequest.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 classGenerated 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 PageRequestPageRequest.create()Create a new instance with default values.static PageRequestPageRequest.create(int page) Create new instance of pageable query result request with default size of10and no order definitions.static PageRequestPageRequest.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.BuilderPageRequest.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) ReturnPagewith all entities of theEtype.Data.PageableRepository.slices(PageRequest pageable) ReturnSlicewith all entities of theEtype.