Uses of Interface
org.springframework.data.domain.Pageable
Packages that use Pageable
Package
Description
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.
Support classes for integration of the repository programming model with 3rd party frameworks.
Core support classes.
Integration with Spring MVC.
-
Uses of Pageable in org.springframework.data.domain
Classes in org.springframework.data.domain that implement PageableModifier and TypeClassDescriptionclassAbstract Java Bean implementation ofPageable.classBasic Java Bean implementation ofPageable.Methods in org.springframework.data.domain that return PageableModifier and TypeMethodDescriptionabstract PageableAbstractPageRequest.first()Pageable.first()Returns thePageablerequesting the first page.default PageableSlice.getPageable()abstract PageableAbstractPageRequest.next()Pageable.next()default PageableSlice.nextOrLastPageable()Returns thePageabledescribing the next slice or the one describing the current slice in case it's the last one.Slice.nextPageable()static PageablePageable.ofSize(int pageSize) abstract PageableAbstractPageRequest.previous()AbstractPageRequest.previousOrFirst()Pageable.previousOrFirst()default PageableSlice.previousOrFirstPageable()Returns thePageabledescribing the previous slice or the one describing the current slice in case it's the first one.Slice.previousPageable()static PageablePageable.unpaged()Returns aPageableinstance representing no pagination setup.static PageablePageable.withPage(int pageNumber) Creates a newPageablewithpageNumberapplied.Methods in org.springframework.data.domain that return types with arguments of type PageableModifier and TypeMethodDescriptionPageable.toOptional()Returns anOptionalso that it can easily be mapped on.Methods in org.springframework.data.domain with parameters of type PageableConstructors in org.springframework.data.domain with parameters of type Pageable -
Uses of Pageable in org.springframework.data.geo
Constructors in org.springframework.data.geo with parameters of type Pageable -
Uses of Pageable in org.springframework.data.querydsl
Classes in org.springframework.data.querydsl that implement PageableModifier and TypeClassDescriptionclassBasic Java Bean implementation ofPageablewith support for QueryDSL.Methods in org.springframework.data.querydsl that return PageableModifier and TypeMethodDescriptionQPageRequest.first()QPageRequest.next()QPageRequest.previous()Methods in org.springframework.data.querydsl with parameters of type PageableModifier and TypeMethodDescriptionReturns aPageof entities matching the givenPredicate.QuerydslRepositoryInvokerAdapter.invokeFindAll(Pageable pageable) QuerydslRepositoryInvokerAdapter.invokeQueryMethod(Method method, MultiValueMap<String, ? extends Object> parameters, Pageable pageable, Sort sort) -
Uses of Pageable in org.springframework.data.repository
Methods in org.springframework.data.repository with parameters of type Pageable -
Uses of Pageable in org.springframework.data.repository.history
Methods in org.springframework.data.repository.history with parameters of type Pageable -
Uses of Pageable in org.springframework.data.repository.query
Methods in org.springframework.data.repository.query that return PageableModifier and TypeMethodDescriptionParameterAccessor.getPageable()Returns thePageableof the parameters, if available.ParametersParameterAccessor.getPageable()Methods in org.springframework.data.repository.query with parameters of type Pageable -
Uses of Pageable in org.springframework.data.repository.support
Methods in org.springframework.data.repository.support with parameters of type PageableModifier and TypeMethodDescriptionRepositoryInvoker.invokeFindAll(Pageable pageable) Invokes the find-all method of the underlying repository using the method taking aPageableas parameter if available (i.e. the equivalent toPagingAndSortingRepository.findAll(Pageable)), using the method taking aSortif available (i.e. the equivalent toPagingAndSortingRepository.findAll(Sort)by extracting theSortcontained in the givenPageable) or the plain equivalent toCrudRepository.findAll().RepositoryInvoker.invokeQueryMethod(Method method, MultiValueMap<String, ? extends Object> parameters, Pageable pageable, Sort sort) -
Uses of Pageable in org.springframework.data.support
Methods in org.springframework.data.support with parameters of type PageableModifier and TypeMethodDescriptionstatic <T> Page<T>PageableExecutionUtils.getPage(List<T> content, Pageable pageable, LongSupplier totalSupplier) -
Uses of Pageable in org.springframework.data.web
Methods in org.springframework.data.web that return PageableModifier and TypeMethodDescriptionprotected PageablePageableHandlerMethodArgumentResolverSupport.getPageable(MethodParameter methodParameter, String pageString, String pageSizeString) PageableArgumentResolver.resolveArgument(MethodParameter parameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest, WebDataBinderFactory binderFactory) Resolves aPageablemethod parameter into an argument value from a given request.PageableHandlerMethodArgumentResolver.resolveArgument(MethodParameter methodParameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest, WebDataBinderFactory binderFactory) ReactivePageableHandlerMethodArgumentResolver.resolveArgumentValue(MethodParameter parameter, BindingContext bindingContext, ServerWebExchange exchange) Methods in org.springframework.data.web with parameters of type PageableModifier and TypeMethodDescriptionbooleanPageableHandlerMethodArgumentResolverSupport.isFallbackPageable(Pageable pageable) Returns whether the givenPageableis the fallback one.voidPageableHandlerMethodArgumentResolverSupport.setFallbackPageable(Pageable fallbackPageable) Configures thePageableto be used as fallback in case noPageableDefaultcan be found at the method parameter to be resolved.