Class SuperIterator<E>

java.lang.Object
net.glowstone.util.collection.SuperIterator<E>
All Implemented Interfaces:
Iterator<E>

public class SuperIterator<E> extends Object implements Iterator<E>
An Iterator which delegates in other iterators.
  • Constructor Details

  • Method Details

    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator<E>
    • next

      public E next()
      Specified by:
      next in interface Iterator<E>
    • remove

      public void remove()
      Specified by:
      remove in interface Iterator<E>