Uses of Interface
org.springframework.data.domain.Window
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 Window in org.springframework.data.domain
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
.<U> Window<U>
Returns a newWindow
with the content of the current one mapped by the givenconverter
. -
Uses of Window in org.springframework.data.repository.query
Modifier and TypeMethodDescriptionFluentQuery.FetchableFluentQuery.scroll
(ScrollPosition scrollPosition) Get all matching elements asWindow
to start result scrolling or resume scrolling atscrollPosition
.Modifier and TypeMethodDescriptionFluentQuery.ReactiveFluentQuery.scroll
(ScrollPosition scrollPosition) Get all matching elements asWindow
to start result scrolling or resume scrolling atscrollPosition
. -
Uses of Window in org.springframework.data.support
Modifier and TypeMethodDescriptionstatic <T> WindowIterator.WindowIteratorBuilder<T>
WindowIterator.of
(Function<ScrollPosition, Window<T>> windowFunction) Entrypoint to create a newWindowIterator
for the given windowFunction.