Class UnmodifiableIteratorAdapter<E>

java.lang.Object
org.eclipse.collections.impl.UnmodifiableIteratorAdapter<E>
All Implemented Interfaces:
Iterator<E>

public class UnmodifiableIteratorAdapter<E> extends Object implements Iterator<E>
An iterator that adapts another iterator and throws unsupported operation exceptions when calls to the remove method are made.
  • Constructor Details

    • UnmodifiableIteratorAdapter

      public UnmodifiableIteratorAdapter(Iterator<? extends E> iterator)
  • 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>