Class IntMap.Entries<V>

  • All Implemented Interfaces:
    java.lang.Iterable<IntMap.Entry<V>>, java.util.Iterator<IntMap.Entry<V>>
    Enclosing class:
    IntMap<V>

    public static class IntMap.Entries<V>
    extends java.lang.Object
    implements java.lang.Iterable<IntMap.Entry<V>>, java.util.Iterator<IntMap.Entry<V>>
    • Constructor Summary

      Constructors 
      Constructor Description
      Entries​(IntMap map)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()  
      java.util.Iterator<IntMap.Entry<V>> iterator()  
      IntMap.Entry<V> next()
      Note the same entry instance is returned each time this method is called.
      • 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, remove
    • Constructor Detail

      • Entries

        public Entries​(IntMap map)
    • Method Detail

      • next

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

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

        public java.util.Iterator<IntMap.Entry<V>> iterator()
        Specified by:
        iterator in interface java.lang.Iterable<V>