Class AbstractSortedMapDecorator.SortedMapIterator<K,V>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.EntrySetToMapIteratorAdapter<K,V>
-
- org.apache.openjpa.lib.util.collections.AbstractSortedMapDecorator.SortedMapIterator<K,V>
-
- Type Parameters:
K
- the key typeV
- the value type
- All Implemented Interfaces:
java.util.Iterator<K>
,MapIterator<K,V>
,OrderedIterator<K>
,OrderedMapIterator<K,V>
,ResettableIterator<K>
- Enclosing class:
- AbstractSortedMapDecorator<K,V>
protected static class AbstractSortedMapDecorator.SortedMapIterator<K,V> extends EntrySetToMapIteratorAdapter<K,V> implements OrderedMapIterator<K,V>
OrderedMapIterator implementation.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SortedMapIterator(java.util.Set<java.util.Map.Entry<K,V>> entrySet)
Create a new AbstractSortedMapDecorator.SortedMapIterator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasPrevious()
Checks to see if there is a previous entry that can be iterated to.K
previous()
Gets the previous key from theMap
.void
reset()
Resets the iterator back to the position at which the iterator was created.-
Methods inherited from class org.apache.openjpa.lib.util.collections.EntrySetToMapIteratorAdapter
current, getKey, getValue, hasNext, next, remove, setValue
-
-
-
-
Method Detail
-
reset
public void reset()
Resets the iterator back to the position at which the iterator was created.- Specified by:
reset
in interfaceResettableIterator<K>
- Overrides:
reset
in classEntrySetToMapIteratorAdapter<K,V>
-
hasPrevious
public boolean hasPrevious()
Checks to see if there is a previous entry that can be iterated to.- Specified by:
hasPrevious
in interfaceOrderedIterator<K>
- Specified by:
hasPrevious
in interfaceOrderedMapIterator<K,V>
- Returns:
true
if the iterator has a previous element
-
previous
public K previous()
Gets the previous key from theMap
.- Specified by:
previous
in interfaceOrderedIterator<K>
- Specified by:
previous
in interfaceOrderedMapIterator<K,V>
- Returns:
- the previous key in the iteration
-
-