Class UncheckedIOIterator<E>

java.lang.Object
org.apache.commons.io.function.UncheckedIOIterator<E>
Type Parameters:
E - the type of elements returned by this iterator.
All Implemented Interfaces:
Iterator<E>

final class UncheckedIOIterator<E> extends Object implements Iterator<E>
An Iterator for a IOIterator that throws UncheckedIOException instead of IOException. Keep package-private for now.
  • Field Details

  • Constructor Details

    • UncheckedIOIterator

      UncheckedIOIterator(IOIterator<E> delegate)
      Constructs a new instance.
      Parameters:
      delegate - The delegate
  • 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>