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 IterationWrapper
wrappedIterModifier and TypeFieldDescriptionprotected final CloseableIteration<? extends T> Deprecated.This will be changed to private, possibly with an accessor in future.Fields inherited from interface CloseableIteration
EMPTY_STATEMENT_ITERATION -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidCloses this Iteration and also closes the wrapped Iteration if it is aCloseableIteration.booleanhasNext()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 IterationWrapper
removeModifier and TypeMethodDescriptionvoidremove()Deprecated.Removes the last element that has been returned from the wrapped Iteration.Methods inherited from class AbstractCloseableIteration
close, isClosedModifier and TypeMethodDescriptionfinal voidclose()CallsAbstractCloseableIteration.handleClose()upon first call and makes sure the resource closures are only executed once.final booleanisClosed()Checks whether this CloseableIteration has been closed.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface CloseableIteration
streamMethods inherited from interface Iterator
forEachRemaining
-
Constructor Details
-
SilentIteration
-
-
Method Details
-
hasNext
public boolean hasNext()Description copied from class:IterationWrapperChecks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case. -
next
Description copied from class:IterationWrapperReturns the next element from the wrapped Iteration. -
handleClose
protected void handleClose()Description copied from class:IterationWrapperCloses this Iteration and also closes the wrapped Iteration if it is aCloseableIteration.- Overrides:
handleClosein classIterationWrapper<T>
-