Class SilentIteration<T,E extends Exception>
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E,X>
org.eclipse.rdf4j.common.iteration.IterationWrapper<T,E>
org.eclipse.rdf4j.common.iteration.SilentIteration<T,E>
- All Implemented Interfaces:
AutoCloseable
,CloseableIteration<T,
,E> Iteration<T,
E>
- Direct Known Subclasses:
SilentIteration
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
-
Constructor Details
-
SilentIteration
-
-
Method Details
-
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
Description copied from class:IterationWrapper
Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.- Overrides:
handleClose
in classIterationWrapper<T,
E extends Exception> - Throws:
E extends Exception
-