Interface CompletableIterator<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean isComplete()
      Return true if the underlying source is completely exhausted, whether or not there are any items to produce (may return false even if Iterator.hasNext() returns false).
      • Methods inherited from interface java.util.Iterator

        forEachRemaining, hasNext, next, remove
    • Method Detail

      • isComplete

        boolean isComplete()
        Return true if the underlying source is completely exhausted, whether or not there are any items to produce (may return false even if Iterator.hasNext() returns false).
        Returns:
        true if underlying iteration source is exhasuted