Class QueryResults.TupleQueryResultFilter
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<BindingSet, QueryEvaluationException>
org.eclipse.rdf4j.query.QueryResults.TupleQueryResultFilter
- All Implemented Interfaces:
AutoCloseable, Iterable<BindingSet>, CloseableIteration<BindingSet, QueryEvaluationException>, Iteration<BindingSet, QueryEvaluationException>, QueryResult<BindingSet>, TupleQueryResult
- Enclosing class:
QueryResults
private static class QueryResults.TupleQueryResultFilter
extends AbstractCloseableIteration<BindingSet, QueryEvaluationException>
implements TupleQueryResult
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final DistinctIteration<BindingSet, QueryEvaluationException> private final TupleQueryResult -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the names of the bindings, in order of projection.voidCalled 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
closeMethods inherited from interface Iterable
forEach, spliteratorMethods inherited from interface QueryResult
iterator, stream
-
Field Details
-
filter
-
unfiltered
-
-
Constructor Details
-
TupleQueryResultFilter
-
-
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.)- Specified by:
hasNextin interfaceIteration<BindingSet, QueryEvaluationException>- Specified by:
hasNextin interfaceQueryResult<BindingSet>- Returns:
- true if the iteration has more elements.
- Throws:
QueryEvaluationException- if an error occurs while executing the query.
-
next
Description copied from interface:IterationReturns the next element in the iteration.- Specified by:
nextin interfaceIteration<BindingSet, QueryEvaluationException>- Specified by:
nextin interfaceQueryResult<BindingSet>- Returns:
- the next element in the iteration.
- Throws:
QueryEvaluationException- if an error occurs while executing the query.
-
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.- Specified by:
removein interfaceIteration<BindingSet, QueryEvaluationException>- 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<BindingSet, QueryEvaluationException>- Throws:
QueryEvaluationException
-
getBindingNames
Description copied from interface:TupleQueryResultGets the names of the bindings, in order of projection.- Specified by:
getBindingNamesin interfaceTupleQueryResult- Returns:
- The binding names, in order of projection.
- Throws:
QueryEvaluationException
-