Class IterableStoredListIterator<T>

java.lang.Object
com.j_spaces.kernel.list.IterableStoredListIterator<T>
All Implemented Interfaces:
Iterator<T>

public class IterableStoredListIterator<T> extends Object implements Iterator<T>
Iterator over an AbstractStoredList.
Since:
8.0
Version:
1.0
Author:
anna
  • Constructor Details

    • IterableStoredListIterator

      public IterableStoredListIterator(AbstractStoredList<T> entries, boolean random_scan)
  • 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>