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.
-
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 newWindowwith the content of the current one mapped by the givenconverter.Method parameters in org.springframework.data.domain with type arguments of type WindowModifier and TypeMethodDescriptionstatic <T> WindowIterator.WindowIteratorBuilder<T>WindowIterator.of(Function<ScrollPosition, Window<T>> windowFunction) Entrypoint to create a newWindowIteratorfor the given windowFunction. -
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 asWindowto 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 asWindowto start result scrolling or resume scrolling atscrollPosition.