Class HashMap.Iterator

java.lang.Object
zombie.core.utils.HashMap.Iterator
Enclosing class:
HashMap

public static class HashMap.Iterator
extends java.lang.Object
  • Constructor Summary

    Constructors
    Constructor Description
    Iterator​(HashMap hashMap)  
  • Method Summary

    Modifier and Type Method Description
    boolean advance()  
    java.lang.Object getKey()  
    java.lang.Object getValue()  
    boolean hasNext()  
    HashMap.Iterator reset()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Iterator

      public Iterator​(HashMap hashMap)
  • Method Details

    • reset

      public HashMap.Iterator reset()
    • hasNext

      public boolean hasNext()
    • advance

      public boolean advance()
    • getKey

      public java.lang.Object getKey()
    • getValue

      public java.lang.Object getValue()