Uses of Interface
org.springframework.data.domain.Window
Packages that use 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
Methods in org.springframework.data.domain that return WindowModifier 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
Methods in org.springframework.data.repository.query that return WindowModifier and TypeMethodDescriptionFluentQuery.FetchableFluentQuery.scroll
(ScrollPosition scrollPosition) Get all matching elements asWindow
to start result scrolling or resume scrolling atscrollPosition
.Methods in org.springframework.data.repository.query that return types with arguments of type WindowModifier 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
Method parameters in org.springframework.data.support with type arguments of type WindowModifier and TypeMethodDescriptionstatic <T> WindowIterator.WindowIteratorBuilder<T>
WindowIterator.of
(Function<ScrollPosition, Window<T>> windowFunction) Entrypoint to create a newWindowIterator
for the given windowFunction.