Package com.badlogic.gdx.utils
Class Array.ArrayIterator<T>
- java.lang.Object
-
- com.badlogic.gdx.utils.Array.ArrayIterator<T>
-
-
Constructor Summary
Constructors Constructor Description ArrayIterator(Array<T> array)ArrayIterator(Array<T> array, boolean allowRemove)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Array.ArrayIterator<T>iterator()Tnext()voidremove()voidreset()
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<T>
-
remove
public void remove()
- Specified by:
removein interfacejava.util.Iterator<T>
-
reset
public void reset()
-
iterator
public Array.ArrayIterator<T> iterator()
- Specified by:
iteratorin interfacejava.lang.Iterable<T>
-
-