Class SelectTupleFunction.TupleQueryResultIteration
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<List<Value>, QueryEvaluationException>
org.eclipse.rdf4j.spin.function.SelectTupleFunction.TupleQueryResultIteration
- All Implemented Interfaces:
AutoCloseable, CloseableIteration<List<Value>, QueryEvaluationException>, Iteration<List<Value>, QueryEvaluationException>
- Enclosing class:
SelectTupleFunction
static class SelectTupleFunction.TupleQueryResultIteration
extends AbstractCloseableIteration<List<Value>, QueryEvaluationException>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled byAbstractCloseableIteration.close()when it is called for the first time.booleanhasNext()Returns true if the iteration has more elements.next()Returns the next element in the iteration.voidremove()Removes from the underlying collection the last element returned by the iteration (optional operation).Methods inherited from class AbstractCloseableIteration
close, isClosedMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface CloseableIteration
stream
-
Field Details
-
queryResult
-
bindingNames
-
-
Constructor Details
-
TupleQueryResultIteration
TupleQueryResultIteration(TupleQueryResult queryResult) throws QueryEvaluationException - Throws:
QueryEvaluationException
-
-
Method Details
-
hasNext
Description copied from interface:IterationReturns true if the iteration has more elements. (In other words, returns true ifIteration.next()would return an element rather than throwing a NoSuchElementException.)- Returns:
- true if the iteration has more elements.
- Throws:
QueryEvaluationException
-
next
Description copied from interface:IterationReturns the next element in the iteration.- Returns:
- the next element in the iteration.
- Throws:
QueryEvaluationException
-
remove
Description copied from interface:IterationRemoves from the underlying collection the last element returned by the iteration (optional operation). This method can be called only once per call to next.- Throws:
QueryEvaluationException
-
handleClose
Description copied from class:AbstractCloseableIterationCalled 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:
handleClosein classAbstractCloseableIteration<List<Value>, QueryEvaluationException>- Throws:
QueryEvaluationException
-