Uses of Interface
org.springframework.graphql.data.pagination.CursorEncoder
Packages that use CursorEncoder
Package
Description
Core contracts and generic infrastructure classes for pagination.
-
Uses of CursorEncoder in org.springframework.graphql.data.pagination
Methods in org.springframework.graphql.data.pagination that return CursorEncoderModifier and TypeMethodDescriptionstatic CursorEncoder
CursorEncoder.base64()
Return aCursorEncoder
for Base64 encoding and decoding.EncodingCursorStrategy.getEncoder()
Return the configuredCursorEncoder
.static CursorEncoder
CursorEncoder.noOpEncoder()
Return aCursorEncoder
that does not encode nor decode.Methods in org.springframework.graphql.data.pagination with parameters of type CursorEncoderModifier and TypeMethodDescriptionstatic <T> EncodingCursorStrategy<T>
CursorStrategy.withEncoder
(CursorStrategy<T> strategy, CursorEncoder encoder) Decorate the givenCursorStrategy
with encoding and decoding that makes the String cursor opaque to clients.