Class IterationWrapper<E,X extends Exception>
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E,X>
org.eclipse.rdf4j.common.iteration.IterationWrapper<E,X>
- All Implemented Interfaces:
AutoCloseable
,CloseableIteration<E,
,X> Iteration<E,
X>
- Direct Known Subclasses:
BackgroundGraphResult
,FilterIteration
,InsertBindingSetCursor
,IteratingGraphQueryResult
,IteratingTupleQueryResult
,LimitIteration
,LockingIteration
,SilentIteration
,TimeLimitIteration
Abstract superclass for Iterations that wrap other Iterations. The abstract class IterationWrapper itself
provides default methods that forward method calls to the wrapped Iteration. Subclasses of
IterationWrapper should override some of these methods and may also provide additional methods and fields.
-
Field Summary
Modifier and TypeFieldDescriptionDeprecated.This will be changed to private, possibly with an accessor in future. -
Constructor Summary
ModifierConstructorDescriptionprotected
IterationWrapper
(Iteration<? extends E, ? extends X> iter) Creates a new IterationWrapper that operates on the supplied Iteration. -
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.void
remove()
Removes the last element that has been returned from the wrapped Iteration.Methods inherited from class org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration
close, isClosed
-
Field Details
-
wrappedIter
Deprecated.This will be changed to private, possibly with an accessor in future. Do not rely on it.The wrapped Iteration.
-
-
Constructor Details
-
IterationWrapper
Creates a new IterationWrapper that operates on the supplied Iteration.- Parameters:
iter
- The wrapped Iteration for this IterationWrapper, must not be null.
-
-
Method Details
-
hasNext
Checks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case.- Returns:
- true if the wrapped Iteration contains more elements, false otherwise.
- Throws:
X
-
next
Returns the next element from the wrapped Iteration.- Returns:
- the next element in the iteration.
- Throws:
NoSuchElementException
- If all elements have been returned or it has been closed.X extends Exception
-
remove
Removes the last element that has been returned from the wrapped Iteration.- Throws:
UnsupportedOperationException
- If the wrapped Iteration does not support the remove operation.IllegalStateException
- if the Iteration has been closed, or ifnext()
has not yet been called, orremove()
has already been called after the last call tonext()
.X extends Exception
-
handleClose
Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.- Overrides:
handleClose
in classAbstractCloseableIteration<E,
X extends Exception> - Throws:
X
-