Package com.google.common.collect
Class AbstractMapBasedMultimap.WrappedList.WrappedListIterator
- java.lang.Object
-
- com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection.WrappedIterator
-
- com.google.common.collect.AbstractMapBasedMultimap.WrappedList.WrappedListIterator
-
- All Implemented Interfaces:
java.util.Iterator<V>
,java.util.ListIterator<V>
- Enclosing class:
- AbstractMapBasedMultimap.WrappedList
private class AbstractMapBasedMultimap.WrappedList.WrappedListIterator extends AbstractMapBasedMultimap.WrappedCollection.WrappedIterator implements java.util.ListIterator<V>
ListIterator decorator.
-
-
Field Summary
-
Fields inherited from class com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection.WrappedIterator
delegateIterator, originalDelegate
-
-
Constructor Summary
Constructors Constructor Description WrappedListIterator()
WrappedListIterator(int index)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(V value)
private java.util.ListIterator<V>
getDelegateListIterator()
boolean
hasPrevious()
int
nextIndex()
V
previous()
int
previousIndex()
void
set(V value)
-
Methods inherited from class com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection.WrappedIterator
getDelegateIterator, hasNext, next, remove, validateIterator
-
-
-
-
Method Detail
-
getDelegateListIterator
private java.util.ListIterator<V> getDelegateListIterator()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfacejava.util.ListIterator<V>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfacejava.util.ListIterator<V>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfacejava.util.ListIterator<V>
-
-