Class SilentIteration<T>
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<T>
org.eclipse.rdf4j.common.iteration.IterationWrapper<T>
org.eclipse.rdf4j.common.iteration.SilentIteration<T>
- All Implemented Interfaces:
AutoCloseable
,Iterator<T>
,CloseableIteration<T>
An
IterationWrapper
that silently ignores any errors that occur during processing.- Author:
- Jeen Broekstra
-
Field Summary
Fields inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper
wrappedIter
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.boolean
hasNext()
Checks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case.next()
Returns the next element from the wrapped Iteration.Methods inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper
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
-
Constructor Details
-
SilentIteration
-
-
Method Details
-
hasNext
public boolean hasNext()Description copied from class:IterationWrapper
Checks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case. -
next
Description copied from class:IterationWrapper
Returns the next element from the wrapped Iteration. -
handleClose
protected void handleClose()Description copied from class:IterationWrapper
Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.- Overrides:
handleClose
in classIterationWrapper<T>
-