Class RoundRobinIterator<T>

java.lang.Object
org.eclipse.net4j.util.collection.RoundRobinIterator<T>
All Implemented Interfaces:
Iterator<T>

public class RoundRobinIterator<T> extends Object implements Iterator<T>
Since:
3.9
Author:
Eike Stepper
  • Constructor Details

    • RoundRobinIterator

      public RoundRobinIterator(Collection<T> collection)
  • Method Details

    • hasNext

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

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

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