Java org.springframework.data.redis.core ListOperations fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.redis.core ListOperations fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.redis.core ListOperations.

The text is from its open source code.

Implementation

org.springframework.data.redis.core.ListOperations has the following implementations.
Click this link to see all its implementation.

Method

Vindex(K key, long index)
Get element at index form list at key .
VleftPop(K key)
Removes and returns first element in list stored at key .
LongleftPush(K key, V value)
Prepend value to key .
LongleftPushAll(K key, V... values)
Prepend values to key .
LongleftPushAll(K key, Collection values)
Prepend values to key .
Listrange(K key, long start, long end)
Get elements between begin and end from list at key .
Longremove(K key, long count, Object value)
Removes the first count occurrences of value from the list stored at key .
VrightPop(K key)
Removes and returns last element in list stored at key .
LongrightPush(K key, V value)
Append value to key .
LongrightPushAll(K key, V... values)
Append values to key .
LongrightPushAll(K key, Collection values)
Append values to key .
voidset(K key, long index, V value)
Set the value list element at index .
Longsize(K key)
Get the size of list stored at key .
voidtrim(K key, long start, long end)
Trim list at key to elements between start and end .