Package com.badlogic.gdx.utils
Class ArrayMap.Entries<K,V>
- java.lang.Object
-
- com.badlogic.gdx.utils.ArrayMap.Entries<K,V>
-
- All Implemented Interfaces:
java.lang.Iterable<ObjectMap.Entry<K,V>>,java.util.Iterator<ObjectMap.Entry<K,V>>
public static class ArrayMap.Entries<K,V> extends java.lang.Object implements java.lang.Iterable<ObjectMap.Entry<K,V>>, java.util.Iterator<ObjectMap.Entry<K,V>>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()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.voidremove()voidreset()
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<K>
-
iterator
public java.util.Iterator<ObjectMap.Entry<K,V>> iterator()
- Specified by:
iteratorin interfacejava.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:
nextin interfacejava.util.Iterator<K>
-
remove
public void remove()
- Specified by:
removein interfacejava.util.Iterator<K>
-
reset
public void reset()
-
-