Class LookAheadIterator<E>
java.lang.Object
org.eclipse.rdf4j.common.iterator.AbstractCloseableIterator<E>
org.eclipse.rdf4j.common.iterator.LookAheadIterator<E>
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Iterator<E>
- Direct Known Subclasses:
UnionIterator
- Author:
- MJAHale
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected abstract E
Gets the next element.protected void
protected void
Called byAbstractCloseableIterator.close()
when it is called for the first time.final boolean
hasNext()
final E
next()
void
remove()
Throws anUnsupportedOperationException
.Methods inherited from class org.eclipse.rdf4j.common.iterator.AbstractCloseableIterator
close, isClosed
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
LookAheadIterator
protected LookAheadIterator()
-
-
Method Details
-
getNextElement
Gets the next element. Subclasses should implement this method so that it returns the next element.- Returns:
- The next element, or null if no more elements are available.
-
hasNext
public final boolean hasNext() -
next
-
remove
public void remove()Throws anUnsupportedOperationException
. -
handleClose
Description copied from class:AbstractCloseableIterator
Called byAbstractCloseableIterator.close()
when it is called for the first time. This method is only called once on each iteration. By default, this method does nothing.- Overrides:
handleClose
in classAbstractCloseableIterator<E>
- Throws:
IOException
-
handleAlreadyClosed
- Overrides:
handleAlreadyClosed
in classAbstractCloseableIterator<E>
- Throws:
IOException
-