Uses of Interface
org.springframework.data.domain.ScrollPosition
Package
Description
Central domain abstractions especially to be used in combination with the
Repository
abstraction.Support classes to work with query methods.
Core support classes.
-
Uses of ScrollPosition in org.springframework.data.domain
Modifier and TypeClassDescriptionfinal class
AScrollPosition
based on the last seen key set.final class
AScrollPosition
based on the offsets within query results.Modifier and TypeMethodDescriptionWindow.positionAt
(int index) Returns theScrollPosition
atindex
.default ScrollPosition
Window.positionAt
(T object) Returns theScrollPosition
forobject
.Modifier 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
. -
Uses of ScrollPosition in org.springframework.data.repository.query
Modifier and TypeMethodDescriptionParameterAccessor.getScrollPosition()
Returns theScrollPosition
of the parameters, if available.ParametersParameterAccessor.getScrollPosition()
Modifier 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
. -
Uses of ScrollPosition in org.springframework.data.support
Modifier and TypeMethodDescriptionWindowIterator.WindowIteratorBuilder.startingAt
(ScrollPosition position) Create aWindowIterator
givenScrollPosition
.Modifier and TypeMethodDescriptionstatic <T> WindowIterator.WindowIteratorBuilder<T>
WindowIterator.of
(Function<ScrollPosition, Window<T>> windowFunction) Entrypoint to create a newWindowIterator
for the given windowFunction.