Uses of Interface
org.springframework.data.domain.ScrollPosition
Packages that use ScrollPosition
Package
Description
Central domain abstractions especially to be used in combination with the
Repository
abstraction.Support classes to work with query methods.
-
Uses of ScrollPosition in org.springframework.data.domain
Classes in org.springframework.data.domain that implement ScrollPositionModifier and TypeClassDescriptionfinal class
AScrollPosition
based on the last seen keyset.final class
AScrollPosition
based on the offsets within query results.Methods in org.springframework.data.domain that return ScrollPositionModifier and TypeMethodDescriptionWindow.positionAt
(int index) Returns theScrollPosition
atindex
.default ScrollPosition
Window.positionAt
(T object) Returns theScrollPosition
forobject
.Methods in org.springframework.data.domain with parameters of type ScrollPositionModifier and TypeMethodDescriptionWindowIterator.WindowIteratorBuilder.startingAt
(ScrollPosition position) Create aWindowIterator
givenScrollPosition
.Method parameters in org.springframework.data.domain with type arguments of type ScrollPositionModifier and TypeMethodDescriptionstatic <T> Window<T>
Window.from
(List<T> items, IntFunction<? extends ScrollPosition> positionFunction) Construct aWindow
.static <T> Window<T>
Window.from
(List<T> items, IntFunction<? extends ScrollPosition> positionFunction, boolean hasNext) Construct aWindow
.static <T> WindowIterator.WindowIteratorBuilder<T>
WindowIterator.of
(Function<ScrollPosition, Window<T>> windowFunction) Entrypoint to create a newWindowIterator
for the given windowFunction. -
Uses of ScrollPosition in org.springframework.data.repository.query
Methods in org.springframework.data.repository.query that return ScrollPositionModifier and TypeMethodDescriptionParameterAccessor.getScrollPosition()
Returns theScrollPosition
of the parameters, if available.ParametersParameterAccessor.getScrollPosition()
Methods in org.springframework.data.repository.query with parameters of type ScrollPositionModifier and TypeMethodDescriptionFluentQuery.FetchableFluentQuery.scroll
(ScrollPosition scrollPosition) Get all matching elements asWindow
to start result scrolling or resume scrolling atscrollPosition
.FluentQuery.ReactiveFluentQuery.scroll
(ScrollPosition scrollPosition) Get all matching elements asWindow
to start result scrolling or resume scrolling atscrollPosition
.