T
- Type of elements returned by this iteratorpublic abstract class AbstractCloseableIterator<T> extends Object implements CloseableIterator<T>
CloseableIterator
.
This class is copied from guava AbstractIterator.Modifier | Constructor and Description |
---|---|
protected |
AbstractCloseableIterator()
Constructor for use by subclasses.
|
Modifier and Type | Method and Description |
---|---|
protected abstract T |
computeNext()
Returns the next element.
|
protected T |
endOfData()
Implementations of
computeNext() must invoke this method when
there are no elements left in the iteration. |
boolean |
hasNext() |
T |
next() |
void |
remove() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
close, empty
forEachRemaining
protected AbstractCloseableIterator()
protected abstract T computeNext()
endOfData()
when there are no elements left in the iteration. Failure to
do so could result in an infinite loop.
The initial invocation of hasNext()
or next()
calls
this method, as does the first invocation of hasNext
or next
following each successful call to next
. Once the
implementation either invokes endOfData
or throws an exception,
computeNext
is guaranteed to never be called again.
If this method throws an exception, it will propagate outward to the
hasNext
or next
invocation that invoked this method. Any
further attempts to use the iterator will result in an IllegalStateException
.
The implementation of this method may not invoke the hasNext
or
next
methods on this instance; if it does, an
IllegalStateException
will result.
endOfData
was called
during execution, the return value will be ignored.RuntimeException
- if any unrecoverable error happens. This exception
will propagate outward to the hasNext()
, next()
, or
peek()
invocation that invoked this method. Any further
attempts to use the iterator will result in an
IllegalStateException
.protected final T endOfData()
computeNext()
must invoke this method when
there are no elements left in the iteration.null
; a convenience so your computeNext
implementation can use the simple statement return endOfData();
Copyright © 2022 Cask Data, Inc. Licensed under the Apache License, Version 2.0.