Class AbstractIterableMap<K,V>

    • Constructor Detail

      • AbstractIterableMap

        public AbstractIterableMap()
    • Method Detail

      • mapIterator

        public MapIterator<K,V> mapIterator()
        Obtains a MapIterator over the map.

        A map iterator is an efficient way of iterating over maps. There is no need to access the entry set or use Map Entry objects.

         IterableMap
                                  
                                     map = new HashedMap
                                    
                                      (); MapIterator
                                      
                                         it = map.mapIterator(); while (it.hasNext()) { String key = it.next(); Integer value = it.getValue(); it.setValue(value + 1); } 
                                      
                                    
                                  
        Specified by:
        mapIterator in interface  IterableGet<K,V>
        Returns:
        a map iterator