Uses of Record Class
st.orm.Scrollable
Packages that use Scrollable
-
Uses of Scrollable in st.orm
Methods in st.orm that return ScrollableModifier and TypeMethodDescriptionScrollable.backward()Returns a new scrollable with backward direction.Scrollable.forward()Returns a new scrollable with forward direction.static <T extends Data,E>
Scrollable<T> Scrollable.fromCursor(Metamodel.Key<T, E> key, String cursor) Deserializes a cursor string (produced bytoCursor()) into aScrollablefor single-key scrolling.static <T extends Data,E, S>
Scrollable<T> Scrollable.fromCursor(Metamodel.Key<T, E> key, Metamodel<T, S> sort, String cursor) Deserializes a cursor string (produced bytoCursor()) into aScrollablefor composite scrolling with a sort field.<T extends Data>
Scrollable<T> Window.next()Returns a typed scrollable for fetching the next window, ornullif the window is empty.Scrollable<?> Window.nextScrollable()Returns the value of thenextScrollablerecord component.static <T extends Data,E>
Scrollable<T> Scrollable.of(Metamodel.Key<T, E> key, int size) Creates a scrollable request for the first page in ascending key order.static <T extends Data,E>
Scrollable<T> Scrollable.of(Metamodel.Key<T, E> key, E keyCursor, int size) Creates a scrollable request starting after the given cursor value, in ascending key order.static <T extends Data,E, S>
Scrollable<T> Scrollable.of(Metamodel.Key<T, E> key, E keyCursor, Metamodel<T, S> sort, S sortCursor, int size) Creates a scrollable request starting after the given cursor values, in ascending key order, sorted by the given field.static <T extends Data,E, S>
Scrollable<T> Scrollable.of(Metamodel.Key<T, E> key, Metamodel<T, S> sort, int size) Creates a scrollable request for the first page in ascending key order, sorted by the given field.<T extends Data>
Scrollable<T> Window.previous()Returns a typed scrollable for fetching the previous window, ornullif the window is empty.Scrollable<?> Window.previousScrollable()Returns the value of thepreviousScrollablerecord component.Scrollable.reverse()Returns a new scrollable with the direction reversed.Constructors in st.orm with parameters of type ScrollableModifierConstructorDescriptionWindow(List<R> content, boolean hasNext, boolean hasPrevious, Scrollable<?> nextScrollable, Scrollable<?> previousScrollable) Creates an instance of aWindowrecord class. -
Uses of Scrollable in st.orm.repository
Methods in st.orm.repository with parameters of type ScrollableModifier and TypeMethodDescriptionEntityRepository.scroll(Scrollable<E> scrollable) Executes a scroll request from aScrollabletoken, typically obtained fromWindow.next()orWindow.previous().ProjectionRepository.scroll(Scrollable<P> scrollable) Executes a scroll request from aScrollabletoken, typically obtained fromWindow.next()orWindow.previous(). -
Uses of Scrollable in st.orm.template
Methods in st.orm.template with parameters of type ScrollableModifier and TypeMethodDescriptionQueryBuilder.scroll(Scrollable<T> scrollable) Executes a scroll request from aScrollabletoken, typically obtained fromWindow.next()orWindow.previous().