| Constructor and Description |
|---|
RedisListAdapter(org.rarefiedredis.redis.IRedisClient client,
String key) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
String e) |
boolean |
add(String e) |
boolean |
addAll(Collection<? extends String> c) |
boolean |
addAll(int index,
Collection<? extends String> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
String |
get(int index) |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator<String> |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator<String> |
listIterator() |
ListIterator<String> |
listIterator(int index) |
String |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
String |
set(int index,
String element) |
int |
size() |
List<String> |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, hashCode, replaceAll, sort, spliteratorparallelStream, removeIf, streampublic RedisListAdapter(org.rarefiedredis.redis.IRedisClient client,
String key)
public boolean add(String e) throws IllegalArgumentException, UnsupportedOperationException
add in interface Collection<String>add in interface List<String>IllegalArgumentExceptionUnsupportedOperationExceptionpublic void add(int index,
String e)
throws NullPointerException,
IndexOutOfBoundsException,
IllegalArgumentException,
UnsupportedOperationException
add in interface List<String>NullPointerExceptionIndexOutOfBoundsExceptionIllegalArgumentExceptionUnsupportedOperationExceptionpublic boolean addAll(Collection<? extends String> c)
public boolean addAll(int index,
Collection<? extends String> c)
throws UnsupportedOperationException
addAll in interface List<String>UnsupportedOperationExceptionpublic void clear()
throws UnsupportedOperationException
clear in interface Collection<String>clear in interface List<String>UnsupportedOperationExceptionpublic boolean contains(Object o) throws NullPointerException, ClassCastException
contains in interface Collection<String>contains in interface List<String>NullPointerExceptionClassCastExceptionpublic boolean containsAll(Collection<?> c)
containsAll in interface Collection<String>containsAll in interface List<String>public int indexOf(Object o) throws NullPointerException, ClassCastException
indexOf in interface List<String>NullPointerExceptionClassCastExceptionpublic boolean isEmpty()
public int lastIndexOf(Object o) throws NullPointerException, ClassCastException
lastIndexOf in interface List<String>NullPointerExceptionClassCastExceptionpublic ListIterator<String> listIterator()
listIterator in interface List<String>public ListIterator<String> listIterator(int index)
listIterator in interface List<String>public String remove(int index) throws UnsupportedOperationException
remove in interface List<String>UnsupportedOperationExceptionpublic boolean remove(Object o) throws NullPointerException, ClassCastException
remove in interface Collection<String>remove in interface List<String>NullPointerExceptionClassCastExceptionpublic boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c) throws UnsupportedOperationException
retainAll in interface Collection<String>retainAll in interface List<String>UnsupportedOperationExceptionpublic String set(int index, String element) throws NullPointerException, IndexOutOfBoundsException, IllegalArgumentException, UnsupportedOperationException
set in interface List<String>NullPointerExceptionIndexOutOfBoundsExceptionIllegalArgumentExceptionUnsupportedOperationExceptionpublic int size()
public Object[] toArray()
Copyright © 2015. All rights reserved.