Interface IClosableIterator<T,​E extends java.lang.Exception>

  • All Superinterfaces:
    java.lang.AutoCloseable, ICloseable<E>, java.lang.Iterable<T>

    public interface IClosableIterator<T,​E extends java.lang.Exception>
    extends ICloseable<E>, java.lang.Iterable<T>
    • Method Detail

      • hasNext

        boolean hasNext()
                 throws E extends java.lang.Exception
        Throws:
        E extends java.lang.Exception
      • next

        T next()
        throws E extends java.lang.Exception
        Throws:
        E extends java.lang.Exception
      • iterator

        default java.util.Iterator<T> iterator()
        Specified by:
        iterator in interface java.lang.Iterable<T>