Class AbstractLinkedMap.LinkMapIterator<K,V> 
java.lang.Object
org.apache.commons.collections4.map.AbstractLinkedMap.LinkIterator<K,V>
 
org.apache.commons.collections4.map.AbstractLinkedMap.LinkMapIterator<K,V> 
- Type Parameters:
- K- the key type.
- V- the value type.
- All Implemented Interfaces:
- Iterator<K>,- MapIterator<K,,- V> - OrderedIterator<K>,- OrderedMapIterator<K,,- V> - ResettableIterator<K>
- Enclosing class:
- AbstractLinkedMap<K,- V> 
protected static class AbstractLinkedMap.LinkMapIterator<K,V> 
extends AbstractLinkedMap.LinkIterator<K,V>
implements OrderedMapIterator<K,V>, ResettableIterator<K>  
MapIterator implementation.
- Since:
- 3.0
- 
Field SummaryFields inherited from class org.apache.commons.collections4.map.AbstractLinkedMap.LinkIteratorexpectedModCount, last, next, parent
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedLinkMapIterator(AbstractLinkedMap<K, V> parent) Constructs a new instance.
- 
Method SummaryModifier and TypeMethodDescriptiongetKey()Gets the current key, which is the key returned by the last call tonext().getValue()Gets the current value, which is the value associated with the last key returned bynext().next()Gets the next key from theMap.previous()Gets the previous key from theMap.Sets the value associated with the current key (optional operation).Methods inherited from class org.apache.commons.collections4.map.AbstractLinkedMap.LinkIteratorcurrentEntry, hasNext, hasPrevious, nextEntry, previousEntry, remove, reset, toStringMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.IteratorforEachRemainingMethods inherited from interface org.apache.commons.collections4.MapIteratorhasNext, removeMethods inherited from interface org.apache.commons.collections4.OrderedMapIteratorhasPreviousMethods inherited from interface org.apache.commons.collections4.ResettableIteratorreset
- 
Constructor Details- 
LinkMapIteratorConstructs a new instance.- Parameters:
- parent- The parent AbstractLinkedMap.
 
 
- 
- 
Method Details- 
getKeyDescription copied from interface:MapIteratorGets the current key, which is the key returned by the last call tonext().- Specified by:
- getKeyin interface- MapIterator<K,- V> 
- Returns:
- the current key
 
- 
getValueDescription copied from interface:MapIteratorGets the current value, which is the value associated with the last key returned bynext().- Specified by:
- getValuein interface- MapIterator<K,- V> 
- Returns:
- the current value
 
- 
nextDescription copied from interface:MapIteratorGets the next key from theMap.
- 
previousDescription copied from interface:OrderedMapIteratorGets the previous key from theMap.- Specified by:
- previousin interface- OrderedIterator<K>
- Specified by:
- previousin interface- OrderedMapIterator<K,- V> 
- Returns:
- the previous key in the iteration
 
- 
setValueDescription copied from interface:MapIteratorSets the value associated with the current key (optional operation).- Specified by:
- setValuein interface- MapIterator<K,- V> 
- Parameters:
- value- the new value
- Returns:
- the previous value
 
 
-