Class ArrayMap.Entries<K,​V>

    • Constructor Summary

      Constructors 
      Constructor Description
      Entries​(ArrayMap<K,​V> map)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()  
      java.util.Iterator<ObjectMap.Entry<K,​V>> iterator()  
      ObjectMap.Entry<K,​V> next()
      Note the same entry instance is returned each time this method is called.
      void remove()  
      void reset()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
      • Methods inherited from interface java.util.Iterator

        forEachRemaining
    • Constructor Detail

      • Entries

        public Entries​(ArrayMap<K,​V> map)
    • Method Detail

      • hasNext

        public boolean hasNext()
        Specified by:
        hasNext in interface java.util.Iterator<K>
      • iterator

        public java.util.Iterator<ObjectMap.Entry<K,​V>> iterator()
        Specified by:
        iterator in interface java.lang.Iterable<K>
      • next

        public ObjectMap.Entry<K,​V> next()
        Note the same entry instance is returned each time this method is called.
        Specified by:
        next in interface java.util.Iterator<K>
      • remove

        public void remove()
        Specified by:
        remove in interface java.util.Iterator<K>
      • reset

        public void reset()