V - value typepublic abstract class RedissonListIterator<V> extends Object implements ListIterator<V>
| Constructor and Description |
|---|
RedissonListIterator(int startIndex) |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
add(int index,
V value) |
void |
add(V e) |
abstract void |
fastSet(int index,
V value) |
abstract V |
getValue(int index) |
boolean |
hasNext() |
boolean |
hasPrevious() |
V |
next() |
int |
nextIndex() |
V |
previous() |
int |
previousIndex() |
void |
remove() |
abstract V |
remove(int index) |
void |
set(V e) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingpublic abstract V getValue(int index)
public abstract V remove(int index)
public abstract void fastSet(int index,
V value)
public abstract void add(int index,
V value)
public boolean hasNext()
public V next()
public void remove()
public boolean hasPrevious()
hasPrevious in interface ListIterator<V>public V previous()
previous in interface ListIterator<V>public int nextIndex()
nextIndex in interface ListIterator<V>public int previousIndex()
previousIndex in interface ListIterator<V>public void set(V e)
set in interface ListIterator<V>public void add(V e)
add in interface ListIterator<V>Copyright © 2014–2021 Redisson. All rights reserved.