Class AbstractLinkedMap.ValuesIterator
- java.lang.Object
-
- org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
-
- org.apache.commons.collections.map.AbstractLinkedMap.ValuesIterator
-
- All Implemented Interfaces:
Iterator
,OrderedIterator
,ResettableIterator
- Enclosing class:
- AbstractLinkedMap
protected static class AbstractLinkedMap.ValuesIterator extends AbstractLinkedMap.LinkIterator
Values iterator.
-
-
Field Summary
-
Fields inherited from class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
expectedModCount, last, next, parent
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ValuesIterator(AbstractLinkedMap parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
next()
Object
previous()
Gets the previous element from the collection.-
Methods inherited from class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
currentEntry, hasNext, hasPrevious, nextEntry, previousEntry, remove, reset, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
ValuesIterator
protected ValuesIterator(AbstractLinkedMap parent)
-
-
Method Detail
-
next
public Object next()
-
previous
public Object previous()
Description copied from interface:OrderedIterator
Gets the previous element from the collection.- Returns:
- the previous element in the iteration
-
-