Class AbstractSortedMapDecorator.SortedMapIterator<K,V>
java.lang.Object
org.apache.commons.collections4.map.EntrySetToMapIteratorAdapter<K,V>
org.apache.commons.collections4.map.AbstractSortedMapDecorator.SortedMapIterator<K,V>
- Type Parameters:
K- the key typeV- the value type
- All Implemented Interfaces:
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.
- Since:
- 3.0
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSortedMapIterator(Set<Map.Entry<K, V>> entrySet) Create a new AbstractSortedMapDecorator.SortedMapIterator. -
Method Summary
Methods inherited from class EntrySetToMapIteratorAdapter
current, getKey, getValue, hasNext, next, remove, setValueMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Iterator
forEachRemaining
-
Constructor Details
-
SortedMapIterator
Create a new AbstractSortedMapDecorator.SortedMapIterator.- Parameters:
entrySet- the entrySet to iterate
-
-
Method Details
-
reset
Resets the iterator back to the position at which the iterator was created.- Specified by:
resetin interfaceResettableIterator<K>- Overrides:
resetin classEntrySetToMapIteratorAdapter<K,V>
-
hasPrevious
Checks to see if there is a previous entry that can be iterated to.- Specified by:
hasPreviousin interfaceOrderedIterator<K>- Specified by:
hasPreviousin interfaceOrderedMapIterator<K,V> - Returns:
trueif the iterator has a previous element
-
previous
Gets the previous key from theMap.- Specified by:
previousin interfaceOrderedIterator<K>- Specified by:
previousin interfaceOrderedMapIterator<K,V> - Returns:
- the previous key in the iteration
-