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 voidadd(V value)booleanhasNext()booleanhasPrevious()Vnext()intnextIndex()Vprevious()intpreviousIndex()voidremove()voidset(V value)
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfacejava.util.ListIterator<V>
-
next
public V next()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfacejava.util.ListIterator<V>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfacejava.util.ListIterator<V>
-
remove
public void remove()
-
-