Interface CursorStrategy<P>
- All Known Implementing Classes:
EncodingCursorStrategy
,JsonKeysetCursorStrategy
,ScrollPositionCursorStrategy
public interface CursorStrategy<P>
Strategy to convert an Object that represents the position of an item within
a paginated result set to and from a String cursor.
A CursorEncoder
may be combined with a CursorEncoder
via
withEncoder(CursorStrategy, CursorEncoder)
to further encode and
decode cursor Strings to make them opaque for clients.
- Since:
- 1.2
- Author:
- Rossen Stoyanchev
-
Method Summary
Modifier and TypeMethodDescriptionfromCursor
(String cursor) Parse the given String cursor into a position Object.boolean
Whether the strategy supports the given type of position Object.Format the given position Object as a String cursor.static <T> EncodingCursorStrategy<T>
withEncoder
(CursorStrategy<T> strategy, CursorEncoder encoder) Decorate the givenCursorStrategy
with encoding and decoding that makes the String cursor opaque to clients.
-
Method Details
-
supports
Whether the strategy supports the given type of position Object. -
toCursor
Format the given position Object as a String cursor.- Parameters:
position
- the position to serialize- Returns:
- the created String cursor
-
fromCursor
Parse the given String cursor into a position Object.- Parameters:
cursor
- the cursor to parse- Returns:
- the position Object
-
withEncoder
Decorate the givenCursorStrategy
with encoding and decoding that makes the String cursor opaque to clients.
-