Class PrintingIteration
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<BindingSet>
org.eclipse.rdf4j.federated.evaluation.iterator.PrintingIteration
- All Implemented Interfaces:
AutoCloseable
,Iterator<BindingSet>
,CloseableIteration<BindingSet>
Print the bindings of the inner iteration to stdout, however maintain a copy, which is accessible through this
iteration.
- Author:
- Andreas Schwarte
-
Field Summary
Modifier and TypeFieldDescriptionprotected LinkedList<BindingSet>
protected boolean
protected final CloseableIteration<BindingSet>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
Called byAbstractCloseableIteration.close()
when it is called for the first time.boolean
hasNext()
next()
void
print()
void
remove()
Methods inherited from class org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration
close, isClosed
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.common.iteration.CloseableIteration
stream
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Field Details
-
inner
-
copyQueue
-
done
protected boolean done
-
-
Constructor Details
-
PrintingIteration
-
-
Method Details
-
print
- Throws:
QueryEvaluationException
-
hasNext
- Throws:
QueryEvaluationException
-
next
- Throws:
QueryEvaluationException
-
remove
- Throws:
QueryEvaluationException
-
handleClose
Description copied from class:AbstractCloseableIteration
Called byAbstractCloseableIteration.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 classAbstractCloseableIteration<BindingSet>
- Throws:
QueryEvaluationException
-