Uses of Enum Class
redis.clients.jedis.args.ListPosition
Packages that use ListPosition
Package
Description
This package contains the classes that represent arguments of Redis core commands.
This package contains the interfaces that contain methods representing Redis core commands.
-
Uses of ListPosition in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type ListPositionModifier and TypeMethodDescriptionfinal CommandObject<Long> CommandObjects.linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value) final CommandObject<Long> CommandObjects.linsert(String key, ListPosition where, String pivot, String value) longJedis.linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value) longJedis.linsert(String key, ListPosition where, String pivot, String value) MultiNodePipelineBase.linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value) MultiNodePipelineBase.linsert(String key, ListPosition where, String pivot, String value) Pipeline.linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value) Pipeline.linsert(String key, ListPosition where, String pivot, String value) TransactionBase.linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value) TransactionBase.linsert(String key, ListPosition where, String pivot, String value) longUnifiedJedis.linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value) longUnifiedJedis.linsert(String key, ListPosition where, String pivot, String value) -
Uses of ListPosition in redis.clients.jedis.args
Methods in redis.clients.jedis.args that return ListPositionModifier and TypeMethodDescriptionstatic ListPositionReturns the enum constant of this class with the specified name.static ListPosition[]ListPosition.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of ListPosition in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type ListPositionModifier and TypeMethodDescriptionlongListBinaryCommands.linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value) longListCommands.linsert(String key, ListPosition where, String pivot, String value) Inserts element in the list stored at key either before or after the reference value pivot.ListPipelineBinaryCommands.linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value) ListPipelineCommands.linsert(String key, ListPosition where, String pivot, String value)