Interface OrderedMapIterator<K,V>
-
- Type Parameters:
K
- the type of the keys in the mapV
- the type of the values in the map
- All Superinterfaces:
java.util.Iterator<K>
,MapIterator<K,V>
,OrderedIterator<K>
- All Known Implementing Classes:
AbstractLinkedMap.LinkMapIterator
,AbstractSortedMapDecorator.SortedMapIterator
,DualTreeBidiMap.BidiOrderedMapIterator
,EmptyOrderedMapIterator
,UnmodifiableOrderedMapIterator
public interface OrderedMapIterator<K,V> extends MapIterator<K,V>, OrderedIterator<K>
Defines an iterator that operates over an orderedMap
.This iterator allows both forward and reverse iteration through the map.
- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract 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
.
-
-
-
Method Detail
-
hasPrevious
boolean hasPrevious()
Checks to see if there is a previous entry that can be iterated to.- Specified by:
hasPrevious
in interfaceOrderedIterator<K>
- Returns:
true
if the iterator has a previous element
-
previous
K previous()
Gets the previous key from theMap
.- Specified by:
previous
in interfaceOrderedIterator<K>
- Returns:
- the previous key in the iteration
- Throws:
java.util.NoSuchElementException
- if the iteration is finished
-
-