Class AbstractLinkedMap.EntrySetIterator<K,V>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.AbstractLinkedMap.LinkIterator<K,V>
-
- org.apache.openjpa.lib.util.collections.AbstractLinkedMap.EntrySetIterator<K,V>
-
- All Implemented Interfaces:
java.util.Iterator<java.util.Map.Entry<K,V>>
,OrderedIterator<java.util.Map.Entry<K,V>>
,ResettableIterator<java.util.Map.Entry<K,V>>
- Enclosing class:
- AbstractLinkedMap<K,V>
protected static class AbstractLinkedMap.EntrySetIterator<K,V> extends AbstractLinkedMap.LinkIterator<K,V> implements OrderedIterator<java.util.Map.Entry<K,V>>, ResettableIterator<java.util.Map.Entry<K,V>>
EntrySet iterator.
-
-
Field Summary
-
Fields inherited from class org.apache.openjpa.lib.util.collections.AbstractLinkedMap.LinkIterator
expectedModCount, last, next, parent
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
EntrySetIterator(AbstractLinkedMap<K,V> parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map.Entry<K,V>
next()
java.util.Map.Entry<K,V>
previous()
Gets the previous element from the container.-
Methods inherited from class org.apache.openjpa.lib.util.collections.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 org.apache.openjpa.lib.util.collections.OrderedIterator
hasPrevious
-
Methods inherited from interface org.apache.openjpa.lib.util.collections.ResettableIterator
reset
-
-
-
-
Constructor Detail
-
EntrySetIterator
protected EntrySetIterator(AbstractLinkedMap<K,V> parent)
-
-
Method Detail
-
previous
public java.util.Map.Entry<K,V> previous()
Description copied from interface:OrderedIterator
Gets the previous element from the container.- Specified by:
previous
in interfaceOrderedIterator<K>
- Returns:
- the previous element in the iteration
-
-