Class AbstractHashedMap.HashMapIterator<K,V> 
java.lang.Object
org.apache.commons.collections4.map.AbstractHashedMap.HashIterator<K,V>
 
org.apache.commons.collections4.map.AbstractHashedMap.HashMapIterator<K,V> 
- Type Parameters:
- K- the type of the keys in the map
- V- the type of the values in the map
- All Implemented Interfaces:
- Iterator<K>,- MapIterator<K,- V> 
- Enclosing class:
- AbstractHashedMap<K,- V> 
protected static class AbstractHashedMap.HashMapIterator<K,V> 
extends AbstractHashedMap.HashIterator<K,V>
implements MapIterator<K,V>  
MapIterator implementation.
- Since:
- 3.0
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedHashMapIterator(AbstractHashedMap<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.Sets the value associated with the current key (optional operation).Methods inherited from class org.apache.commons.collections4.map.AbstractHashedMap.HashIteratorcurrentEntry, hasNext, nextEntry, remove, 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, remove
- 
Constructor Details- 
HashMapIteratorConstructs a new instance.- Parameters:
- parent- The parent AbstractHashedMap.
 
 
- 
- 
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.
- 
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
 
 
-