Class BoundJoinVALUESConversionIteration
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<T,X>
org.eclipse.rdf4j.common.iteration.ConvertingIteration<BindingSet,BindingSet,QueryEvaluationException>
org.eclipse.rdf4j.federated.evaluation.iterator.BoundJoinVALUESConversionIteration
- All Implemented Interfaces:
AutoCloseable
,CloseableIteration<BindingSet,QueryEvaluationException>
,Iteration<BindingSet,QueryEvaluationException>
public class BoundJoinVALUESConversionIteration
extends ConvertingIteration<BindingSet,BindingSet,QueryEvaluationException>
Inserts original bindings into the result. This implementation is used for bound joins with VALUES clauses, see
SparqlFederationEvalStrategyWithValues
.
It is assumed the the query results contain a binding for "?__index" which corresponds to the index in the input
mappings. See QueryStringUtil
for details
- Since:
- 3.0
- Author:
- Andreas Schwarte
- See Also:
SparqlFederationEvalStrategy
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<BindingSet>
static String
The binding name for the index -
Constructor Summary
ConstructorsConstructorDescriptionBoundJoinVALUESConversionIteration(CloseableIteration<BindingSet,QueryEvaluationException> iter, List<BindingSet> bindings)
-
Method Summary
Modifier and TypeMethodDescriptionprotected BindingSet
convert(BindingSet bIn)
Converts a source type object to a target type object.Methods inherited from class org.eclipse.rdf4j.common.iteration.ConvertingIteration
handleClose, hasNext, next, remove
Methods inherited from class org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration
close, isClosed
-
Field Details
-
INDEX_BINDING_NAME
The binding name for the index- See Also:
- Constant Field Values
-
bindings
-
-
Constructor Details
-
BoundJoinVALUESConversionIteration
public BoundJoinVALUESConversionIteration(CloseableIteration<BindingSet,QueryEvaluationException> iter, List<BindingSet> bindings)
-
-
Method Details
-
convert
Description copied from class:ConvertingIteration
Converts a source type object to a target type object.- Specified by:
convert
in classConvertingIteration<BindingSet,BindingSet,QueryEvaluationException>
- Throws:
QueryEvaluationException
-