Uses of Enum Class
org.springframework.data.redis.connection.RedisListCommands.Direction
Packages that use RedisListCommands.Direction
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Core package for integrating Redis with Spring concepts.
Package providing implementations for most of the
java.util collections on top of Redis.-
Uses of RedisListCommands.Direction in org.springframework.data.redis.connection
Subclasses with type arguments of type RedisListCommands.Direction in org.springframework.data.redis.connectionMethods in org.springframework.data.redis.connection that return RedisListCommands.DirectionModifier and TypeMethodDescriptionstatic RedisListCommands.DirectionRedisListCommands.Direction.first()Alias forRedisListCommands.Direction.LEFT.static RedisListCommands.DirectionRedisListCommands.Direction.last()Alias forRedisListCommands.Direction.RIGHT.static RedisListCommands.DirectionReturns the enum constant of this class with the specified name.static RedisListCommands.Direction[]RedisListCommands.Direction.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.springframework.data.redis.connection with parameters of type RedisListCommands.DirectionModifier and TypeMethodDescriptiondefault byte[]DefaultedRedisConnection.bLMove(byte[] sourceKey, byte[] destinationKey, RedisListCommands.Direction from, RedisListCommands.Direction to, double timeout) Deprecated.byte[]DefaultStringRedisConnection.bLMove(byte[] sourceKey, byte[] destinationKey, RedisListCommands.Direction from, RedisListCommands.Direction to, double timeout) DefaultStringRedisConnection.bLMove(String sourceKey, String destinationKey, RedisListCommands.Direction from, RedisListCommands.Direction to, double timeout) byte[]RedisListCommands.bLMove(byte @NonNull [] sourceKey, byte @NonNull [] destinationKey, @NonNull RedisListCommands.Direction from, @NonNull RedisListCommands.Direction to, double timeout) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.StringRedisConnection.bLMove(@NonNull String sourceKey, @NonNull String destinationKey, @NonNull RedisListCommands.Direction from, @NonNull RedisListCommands.Direction to, double timeout) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.default byte[]DefaultedRedisConnection.lMove(byte[] sourceKey, byte[] destinationKey, RedisListCommands.Direction from, RedisListCommands.Direction to) Deprecated.in favor ofRedisCommandsProvider.listCommands()}.byte[]DefaultStringRedisConnection.lMove(byte[] sourceKey, byte[] destinationKey, RedisListCommands.Direction from, RedisListCommands.Direction to) DefaultStringRedisConnection.lMove(String sourceKey, String destinationKey, RedisListCommands.Direction from, RedisListCommands.Direction to) byte[]RedisListCommands.lMove(byte @NonNull [] sourceKey, byte @NonNull [] destinationKey, @NonNull RedisListCommands.Direction from, @NonNull RedisListCommands.Direction to) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.StringRedisConnection.lMove(@NonNull String sourceKey, @NonNull String destinationKey, @NonNull RedisListCommands.Direction from, @NonNull RedisListCommands.Direction to) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey. -
Uses of RedisListCommands.Direction in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core with parameters of type RedisListCommands.DirectionModifier and TypeMethodDescriptionBoundListOperations.move(@NonNull RedisListCommands.Direction from, @NonNull K destinationKey, @NonNull RedisListCommands.Direction to) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored at the bound key, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.BoundListOperations.move(@NonNull RedisListCommands.Direction from, @NonNull K destinationKey, @NonNull RedisListCommands.Direction to, long timeout, @NonNull TimeUnit unit) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored at the bound key, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.BoundListOperations.move(@NonNull RedisListCommands.Direction from, @NonNull K destinationKey, @NonNull RedisListCommands.Direction to, @NonNull Duration timeout) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored at the bound key, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.ListOperations.move(@NonNull K sourceKey, @NonNull RedisListCommands.Direction from, @NonNull K destinationKey, @NonNull RedisListCommands.Direction to) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.ListOperations.move(@NonNull K sourceKey, @NonNull RedisListCommands.Direction from, @NonNull K destinationKey, @NonNull RedisListCommands.Direction to, long timeout, @NonNull TimeUnit unit) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.default VListOperations.move(@NonNull K sourceKey, @NonNull RedisListCommands.Direction from, @NonNull K destinationKey, @NonNull RedisListCommands.Direction to, @NonNull Duration timeout) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey. -
Uses of RedisListCommands.Direction in org.springframework.data.redis.support.collections
Methods in org.springframework.data.redis.support.collections with parameters of type RedisListCommands.DirectionModifier and TypeMethodDescriptionDefaultRedisList.moveFirstTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition) DefaultRedisList.moveFirstTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition, long timeout, TimeUnit unit) @Nullable ERedisList.moveFirstTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition) Atomically returns and removes the first element of the list stored at the bound key, and pushes the element at the first/last element (head/tail depending on thedestinationPositionargument) of the list stored atdestination.@Nullable ERedisList.moveFirstTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition, long timeout, TimeUnit unit) Atomically returns and removes the first element of the list stored at the bound key, and pushes the element at the first/last element (head/tail depending on thedestinationPositionargument) of the list stored atdestination.default @Nullable ERedisList.moveFirstTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition, Duration timeout) Atomically returns and removes the first element of the list stored at the bound key, and pushes the element at the first/last element (head/tail depending on thedestinationPositionargument) of the list stored atdestination.DefaultRedisList.moveLastTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition) DefaultRedisList.moveLastTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition, long timeout, TimeUnit unit) @Nullable ERedisList.moveLastTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition) Atomically returns and removes the last element of the list stored at the bound key, and pushes the element at the first/last element (head/tail depending on thedestinationPositionargument) of the list stored atdestination.@Nullable ERedisList.moveLastTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition, long timeout, TimeUnit unit) Atomically returns and removes the last element of the list stored at the bound key, and pushes the element at the first/last element (head/tail depending on thedestinationPositionargument) of the list stored atdestination.default @Nullable ERedisList.moveLastTo(RedisList<E> destination, RedisListCommands.Direction destinationPosition, Duration timeout) Atomically returns and removes the last element of the list stored at the bound key, and pushes the element at the first/last element (head/tail depending on thedestinationPositionargument) of the list stored atdestination.
RedisCommandsProvider.listCommands()}.