Class AbstractListValuedMap.ValuesListIterator
- java.lang.Object
-
- org.apache.commons.collections4.multimap.AbstractListValuedMap.ValuesListIterator
-
- All Implemented Interfaces:
java.util.Iterator<V>
,java.util.ListIterator<V>
- Enclosing class:
- AbstractListValuedMap<K,V>
private class AbstractListValuedMap.ValuesListIterator extends java.lang.Object implements java.util.ListIterator<V>
Values ListIterator
-
-
Constructor Summary
Constructors Constructor Description ValuesListIterator(K key)
ValuesListIterator(K key, int index)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(V value)
boolean
hasNext()
boolean
hasPrevious()
V
next()
int
nextIndex()
V
previous()
int
previousIndex()
void
remove()
void
set(V value)
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfacejava.util.ListIterator<V>
-
next
public V next()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfacejava.util.ListIterator<V>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfacejava.util.ListIterator<V>
-
remove
public void remove()
-
-