Interface JSHashMap.Cursor
-
Method Summary
-
Method Details
-
advance
boolean advance()Advances to the next entry.- Returns:
trueif a next entry exists,falseif there is no next entry.
-
getKey
Object getKey()The key of the current entry. -
getValue
Object getValue()The value of the current entry. -
copy
JSHashMap.Cursor copy()Copies the cursor (including the current state/entry).
-