Package VASSAL.tools

Class ArrayIterator<T>

java.lang.Object
VASSAL.tools.ArrayIterator<T>
All Implemented Interfaces:
Iterator<T>

@Deprecated public class ArrayIterator<T> extends Object implements Iterator<T>
Deprecated.
An Iterator for arrays.
Since:
3.2.0
Author:
Joel Uckelman
  • Constructor Details

    • ArrayIterator

      public ArrayIterator(T... array)
      Deprecated.
  • Method Details

    • hasNext

      public boolean hasNext()
      Deprecated.
      Specified by:
      hasNext in interface Iterator<T>
    • next

      public T next()
      Deprecated.
      Specified by:
      next in interface Iterator<T>
    • remove

      public void remove()
      Deprecated.
      Specified by:
      remove in interface Iterator<T>