Uses of Interface
org.eclipse.rdf4j.query.algebra.TupleExpr
-
-
Uses of TupleExpr in org.eclipse.rdf4j.query.algebra
Classes in org.eclipse.rdf4j.query.algebra that implement TupleExpr Modifier and Type Class Description classArbitraryLengthPathA tuple expression that matches a path of arbitrary length against an RDF graph.classBinaryTupleOperatorAn abstract superclass for binary tuple operators which, by definition, has two arguments.classBindingSetAssignmentclassDescribeOperatorclassDifferenceThe MINUS set operator, which returns the result of the left tuple expression, except for the results that are also returned by the right tuple expression.classDistinctclassEmptySetA tuple expression that contains zero solutions.classExtensionAn extension operator that can be used to add bindings to solutions whose values are defined byvalue expressions.classFilterThe FILTER operator, as defined in SPARQL Query Language for RDF.classGroupA tuple operator that groups tuples that have a specific set of equivalent variable bindings, and that can apply aggregate functions on the grouped results.classIntersectionThe INTERSECT set operator, which returns the intersection of the result sets of two tuple expressions.classJoinA natural join between two tuple expressions.classLeftJoinThe LeftJoin operator, as defined in SPARQL Query Language for RDF.classMultiProjectionA "multi-projection" that can produce multiple solutions from a single set of bindings.classOrderAn order operator that can be used to order bindings as specified by a set of value expressions.classProjectionA generalized projection (allowing the bindings to be renamed) on a tuple expression.classQueryRootA semantics-less query model node that is used as the root of query model trees.classReducedclassServiceThe SERVICE keyword as defined in SERVICE definition.classSingletonSetA tuple expression that contains exactly one solution with zero bindings.classSliceThe SLICE operator, as defined in SPARQL Query Language for RDF.classStatementPatternA tuple expression that matches a statement pattern against an RDF graph.classTripleRefTriple lookup reference.classTupleFunctionCallA call to a TupleFunction.classUnaryTupleOperatorAn abstract superclass for unary tuple operators which, by definition, has one argument.classUnionThe UNION set operator, which return the union of the result sets of two tuple expressions.classZeroLengthPathA tuple expression that matches a path of length zero against an RDF graph.Fields in org.eclipse.rdf4j.query.algebra declared as TupleExpr Modifier and Type Field Description protected TupleExprUnaryTupleOperator. argThe operator's argument.private TupleExprModify. deleteExprprivate TupleExprModify. insertExprprotected TupleExprBinaryTupleOperator. leftArgThe operator's left argument.private TupleExprArbitraryLengthPath. pathExpressionprotected TupleExprBinaryTupleOperator. rightArgThe operator's right argument.protected TupleExprSubQueryValueOperator. subQueryDeprecated, for removal: This API element is subject to removal in a future version.private TupleExprModify. whereExprMethods in org.eclipse.rdf4j.query.algebra that return TupleExpr Modifier and Type Method Description TupleExprTupleExpr. clone()TupleExprUnaryTupleOperator. getArg()Gets the argument of this unary tuple operator.TupleExprModify. getDeleteExpr()TupleExprModify. getInsertExpr()TupleExprBinaryTupleOperator. getLeftArg()Gets the left argument of this binary tuple operator.TupleExprArbitraryLengthPath. getPathExpression()TupleExprBinaryTupleOperator. getRightArg()Gets the right argument of this binary tuple operator.TupleExprService. getServiceExpr()TupleExprSubQueryValueOperator. getSubQuery()Deprecated, for removal: This API element is subject to removal in a future version.TupleExprModify. getWhereExpr()Methods in org.eclipse.rdf4j.query.algebra with parameters of type TupleExpr Modifier and Type Method Description private java.util.Set<java.lang.String>Service. computeServiceVars(TupleExpr serviceExpression)Compute the variable names occurring in the service expression using tree traversal, since these are necessary for building the SPARQL query.voidUnaryTupleOperator. setArg(TupleExpr arg)Sets the argument of this unary tuple operator.voidModify. setDeleteExpr(TupleExpr deleteExpr)voidModify. setInsertExpr(TupleExpr insertExpr)voidBinaryTupleOperator. setLeftArg(TupleExpr leftArg)Sets the left argument of this binary tuple operator.voidArbitraryLengthPath. setPathExpression(TupleExpr pathExpression)voidBinaryTupleOperator. setRightArg(TupleExpr rightArg)Sets the right argument of this binary tuple operator.voidSubQueryValueOperator. setSubQuery(TupleExpr subQuery)Deprecated, for removal: This API element is subject to removal in a future version.voidModify. setWhereExpr(TupleExpr whereExpr)Constructors in org.eclipse.rdf4j.query.algebra with parameters of type TupleExpr Constructor Description ArbitraryLengthPath(StatementPattern.Scope scope, Var subject, TupleExpr pathExpression, Var object, long minLength)Creates a arbitrary-length path that matches a subject-, predicate- and object variable against statements from the specified context scope.ArbitraryLengthPath(StatementPattern.Scope scope, Var subjVar, TupleExpr pathExpression, Var objVar, Var conVar, long minLength)Creates a arbitrary-length path that matches a subject-, predicate-, object- and context variable against statements from the specified context scope.ArbitraryLengthPath(Var subject, TupleExpr pathExpression, Var object, long minLength)Creates a arbitrary-length path that matches a subject-, predicate- and object variable against statements from all contexts.ArbitraryLengthPath(Var subject, TupleExpr pathExpression, Var object, Var context, long minLength)Creates a arbitrary-length path that matches a subject-, predicate-, object- and context variable against statements from all contexts.BinaryTupleOperator(TupleExpr leftArg, TupleExpr rightArg)Creates a new binary tuple operator.CompareAll(ValueExpr valueExpr, TupleExpr subQuery, Compare.CompareOp operator)Deprecated, for removal: This API element is subject to removal in a future version.CompareAny(ValueExpr valueExpr, TupleExpr subQuery, Compare.CompareOp operator)Deprecated, for removal: This API element is subject to removal in a future version.CompareSubQueryValueOperator(ValueExpr valueExpr, TupleExpr subQuery)Deprecated, for removal: This API element is subject to removal in a future version.DescribeOperator(TupleExpr arg)Difference(TupleExpr leftArg, TupleExpr rightArg)Creates a new minus operator that operates on the two specified arguments.Distinct(TupleExpr arg)Exists(TupleExpr subQuery)Extension(TupleExpr arg)Extension(TupleExpr arg, java.lang.Iterable<ExtensionElem> elements)Extension(TupleExpr arg, ExtensionElem... elements)Filter(TupleExpr arg, ValueExpr condition)Group(TupleExpr arg)Group(TupleExpr arg, java.lang.Iterable<java.lang.String> groupBindingNames)Group(TupleExpr arg, java.lang.Iterable<java.lang.String> groupBindingNames, java.lang.Iterable<GroupElem> groupElements)In(ValueExpr valueExpr, TupleExpr subQuery)Intersection(TupleExpr leftArg, TupleExpr rightArg)Creates a new intersection operator that operates on the two specified arguments.Join(TupleExpr leftArg, TupleExpr rightArg)Creates a new natural join operator.LeftJoin(TupleExpr leftArg, TupleExpr rightArg)LeftJoin(TupleExpr leftArg, TupleExpr rightArg, ValueExpr condition)Modify(TupleExpr deleteExpr, TupleExpr insertExpr)Modify(TupleExpr deleteExpr, TupleExpr insertExpr, TupleExpr whereExpr)MultiProjection(TupleExpr arg)MultiProjection(TupleExpr arg, java.lang.Iterable<ProjectionElemList> projections)Order(TupleExpr arg)Order(TupleExpr arg, java.lang.Iterable<OrderElem> elements)Order(TupleExpr arg, OrderElem... elements)Projection(TupleExpr arg)Projection(TupleExpr arg, ProjectionElemList elements)Projection(TupleExpr arg, ProjectionElemList elements, boolean subquery)QueryRoot(TupleExpr tupleExpr)Reduced(TupleExpr arg)Service(Var serviceRef, TupleExpr serviceExpr, java.lang.String serviceExpressionString, java.util.Map<java.lang.String,java.lang.String> prefixDeclarations, java.lang.String baseURI, boolean silent)Slice(TupleExpr arg)Slice(TupleExpr arg, long offset2, long limit2)SubQueryValueOperator(TupleExpr subQuery)Deprecated, for removal: This API element is subject to removal in a future version.UnaryTupleOperator(TupleExpr arg)Creates a new unary tuple operator.Union(TupleExpr leftArg, TupleExpr rightArg)Creates a new union operator that operates on the two specified arguments. -
Uses of TupleExpr in org.eclipse.rdf4j.query.algebra.evaluation
Methods in org.eclipse.rdf4j.query.algebra.evaluation that return TupleExpr Modifier and Type Method Description TupleExprEvaluationStrategy. optimize(TupleExpr expr, EvaluationStatistics evaluationStatistics, BindingSet bindings)Execute theQueryOptimizerPipelineon the givenTupleExprto optimize its execution plan.Methods in org.eclipse.rdf4j.query.algebra.evaluation with parameters of type TupleExpr Modifier and Type Method Description protected abstract CloseableIteration<? extends BindingSet,QueryEvaluationException>AbstractQueryPreparer. evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred, int maxExecutionTime)CloseableIteration<BindingSet,QueryEvaluationException>EvaluationStrategy. evaluate(TupleExpr expr, BindingSet bindings)Evaluates the tuple expression against the supplied triple source with the specified set of variable bindings as input.static QueryEvaluationStepQueryEvaluationStep. minimal(EvaluationStrategy strategy, TupleExpr expr)A fall back implementation that wraps a pre-existing evaluate method on a strategyTupleExprEvaluationStrategy. optimize(TupleExpr expr, EvaluationStatistics evaluationStatistics, BindingSet bindings)Execute theQueryOptimizerPipelineon the givenTupleExprto optimize its execution plan.voidQueryOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)default QueryEvaluationStepEvaluationStrategy. precompile(TupleExpr expr)Prepare a QueryEvaluationStep that tries to do as much work once per query avoiding repeated calls to the same code as much as possible.default QueryEvaluationStepEvaluationStrategy. precompile(TupleExpr expr, QueryEvaluationContext context) -
Uses of TupleExpr in org.eclipse.rdf4j.query.algebra.evaluation.federation
Constructors in org.eclipse.rdf4j.query.algebra.evaluation.federation with parameters of type TupleExpr Constructor Description JoinExecutorBase(CloseableIteration<T,QueryEvaluationException> leftIter, TupleExpr rightArg, BindingSet bindings)Deprecated. -
Uses of TupleExpr in org.eclipse.rdf4j.query.algebra.evaluation.impl
Fields in org.eclipse.rdf4j.query.algebra.evaluation.impl declared as TupleExpr Modifier and Type Field Description protected TupleExprConjunctiveConstraintSplitter.ConstraintVisitor. tupleExprDeprecated, for removal: This API element is subject to removal in a future version.protected TupleExprFilterOptimizer.FilterFinder. tupleExprDeprecated, for removal: This API element is subject to removal in a future version.Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl with type parameters of type TupleExpr Modifier and Type Method Description protected <L extends java.util.List<TupleExpr>>
LQueryJoinOptimizer.JoinVisitor. getJoinArgs(TupleExpr tupleExpr, L joinArgs)Deprecated.Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl that return TupleExpr Modifier and Type Method Description private TupleExprDisjunctiveConstraintOptimizer.OrSameTermOptimizer. findNotFilter(TupleExpr node)Deprecated, for removal: This API element is subject to removal in a future version.private TupleExprQueryJoinOptimizer.JoinVisitor. getNextSubselect(java.util.List<TupleExpr> currentList, java.util.List<TupleExpr> joinArgs)Deprecated.TupleExprDefaultEvaluationStrategy. optimize(TupleExpr expr, EvaluationStatistics evaluationStatistics, BindingSet bindings)Execute theQueryOptimizerPipelineon the givenTupleExprto optimize its execution plan.protected TupleExprQueryJoinOptimizer.JoinVisitor. selectNextTupleExpr(java.util.List<TupleExpr> expressions, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap, java.util.Set<java.lang.String> boundVars)Deprecated.Selects from a list of tuple expressions the next tuple expression that should be evaluated.Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl that return types with arguments of type TupleExpr Modifier and Type Method Description protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. getExtensions(java.util.List<TupleExpr> expressions)Deprecated.protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. getSubSelects(java.util.List<TupleExpr> expressions)Deprecated.protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. reorderSubselects(java.util.List<TupleExpr> subselects)Deprecated.Determines an optimal ordering of subselect join arguments, based on variable bindings.Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl with parameters of type TupleExpr Modifier and Type Method Description CloseableIteration<BindingSet,QueryEvaluationException>DefaultEvaluationStrategy. evaluate(TupleExpr expr, BindingSet bindings)Deprecated, for removal: This API element is subject to removal in a future version.CloseableIteration<BindingSet,QueryEvaluationException>TupleFunctionEvaluationStrategy. evaluate(TupleExpr expr, BindingSet bindings)Deprecated, for removal: This API element is subject to removal in a future version.private TupleExprDisjunctiveConstraintOptimizer.OrSameTermOptimizer. findNotFilter(TupleExpr node)Deprecated, for removal: This API element is subject to removal in a future version.doubleEvaluationStatistics. getCardinality(TupleExpr expr)protected <L extends java.util.List<TupleExpr>>
LQueryJoinOptimizer.JoinVisitor. getJoinArgs(TupleExpr tupleExpr, L joinArgs)Deprecated.protected java.util.List<Var>QueryJoinOptimizer.JoinVisitor. getStatementPatternVars(TupleExpr tupleExpr)Deprecated.protected doubleQueryJoinOptimizer.JoinVisitor. getTupleExprCardinality(TupleExpr tupleExpr, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap, java.util.Set<java.lang.String> boundVars)Deprecated.protected doubleQueryJoinOptimizer.JoinVisitor. getTupleExprCost(TupleExpr tupleExpr, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap, java.util.Set<java.lang.String> boundVars)Deprecated.private booleanConjunctiveConstraintSplitter.ConstraintVisitor. isWithinBindingScope(ValueExpr condition, TupleExpr node)Deprecated, for removal: This API element is subject to removal in a future version.TupleExprDefaultEvaluationStrategy. optimize(TupleExpr expr, EvaluationStatistics evaluationStatistics, BindingSet bindings)Execute theQueryOptimizerPipelineon the givenTupleExprto optimize its execution plan.voidQueryJoinOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)Deprecated, for removal: This API element is subject to removal in a future version.voidQueryModelNormalizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)Deprecated, for removal: This API element is subject to removal in a future version.voidQueryModelPruner. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)Deprecated.Applies generally applicable optimizations: path expressions are sorted from more to less specific.private voidQueryJoinOptimizer.JoinVisitor. optimizePriorityJoin(java.util.Set<java.lang.String> origBoundVars, TupleExpr join)Deprecated.QueryEvaluationStepDefaultEvaluationStrategy. precompile(TupleExpr expr)QueryEvaluationStepDefaultEvaluationStrategy. precompile(TupleExpr expr, QueryEvaluationContext context)QueryEvaluationStepTupleFunctionEvaluationStrategy. precompile(TupleExpr expr, QueryEvaluationContext context)Deprecated, for removal: This API element is subject to removal in a future version.protected voidFilterOptimizer.FilterRelocator. relocate(Filter filter, TupleExpr newFilterArg)Deprecated, for removal: This API element is subject to removal in a future version.private QueryEvaluationStepDefaultEvaluationStrategy. trackResultSize(TupleExpr expr, QueryEvaluationStep qes)private QueryEvaluationStepDefaultEvaluationStrategy. trackTime(TupleExpr expr, QueryEvaluationStep qes)Method parameters in org.eclipse.rdf4j.query.algebra.evaluation.impl with type arguments of type TupleExpr Modifier and Type Method Description protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. getExtensions(java.util.List<TupleExpr> expressions)Deprecated.private TupleExprQueryJoinOptimizer.JoinVisitor. getNextSubselect(java.util.List<TupleExpr> currentList, java.util.List<TupleExpr> joinArgs)Deprecated.protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. getSubSelects(java.util.List<TupleExpr> expressions)Deprecated.protected doubleQueryJoinOptimizer.JoinVisitor. getTupleExprCardinality(TupleExpr tupleExpr, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap, java.util.Set<java.lang.String> boundVars)Deprecated.protected doubleQueryJoinOptimizer.JoinVisitor. getTupleExprCost(TupleExpr tupleExpr, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap, java.util.Set<java.lang.String> boundVars)Deprecated.protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. reorderSubselects(java.util.List<TupleExpr> subselects)Deprecated.Determines an optimal ordering of subselect join arguments, based on variable bindings.protected TupleExprQueryJoinOptimizer.JoinVisitor. selectNextTupleExpr(java.util.List<TupleExpr> expressions, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap, java.util.Set<java.lang.String> boundVars)Deprecated.Selects from a list of tuple expressions the next tuple expression that should be evaluated.protected TupleExprQueryJoinOptimizer.JoinVisitor. selectNextTupleExpr(java.util.List<TupleExpr> expressions, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap, java.util.Set<java.lang.String> boundVars)Deprecated.Selects from a list of tuple expressions the next tuple expression that should be evaluated.Constructors in org.eclipse.rdf4j.query.algebra.evaluation.impl with parameters of type TupleExpr Constructor Description ConstraintVisitor(TupleExpr tupleExpr)Deprecated, for removal: This API element is subject to removal in a future version.FilterFinder(TupleExpr tupleExpr)Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of TupleExpr in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps with parameters of type TupleExpr Modifier and Type Method Description private static booleanJoinQueryEvaluationStep. isOutOfScopeForLeftArgBindings(TupleExpr expr) -
Uses of TupleExpr in org.eclipse.rdf4j.query.algebra.evaluation.iterator
Fields in org.eclipse.rdf4j.query.algebra.evaluation.iterator declared as TupleExpr Modifier and Type Field Description private TupleExprPathIteration. pathExpressionConstructors in org.eclipse.rdf4j.query.algebra.evaluation.iterator with parameters of type TupleExpr Constructor Description HashJoinIteration(EvaluationStrategy strategy, TupleExpr left, TupleExpr right, BindingSet bindings, boolean leftJoin)PathIteration(EvaluationStrategy strategy, StatementPattern.Scope scope, Var startVar, TupleExpr pathExpression, Var endVar, Var contextVar, long minLength, BindingSet bindings) -
Uses of TupleExpr in org.eclipse.rdf4j.query.algebra.evaluation.optimizer
Fields in org.eclipse.rdf4j.query.algebra.evaluation.optimizer declared as TupleExpr Modifier and Type Field Description protected TupleExprConjunctiveConstraintSplitterOptimizer.ConstraintVisitor. tupleExprprivate TupleExprQueryJoinOptimizer.JoinVisitor.StatementPatternVarCollector. tupleExprMethods in org.eclipse.rdf4j.query.algebra.evaluation.optimizer with type parameters of type TupleExpr Modifier and Type Method Description protected <L extends java.util.List<TupleExpr>>
LQueryJoinOptimizer.JoinVisitor. getJoinArgs(TupleExpr tupleExpr, L joinArgs)Methods in org.eclipse.rdf4j.query.algebra.evaluation.optimizer that return TupleExpr Modifier and Type Method Description private TupleExprDisjunctiveConstraintOptimizer.OrSameTermOptimizer. findNotFilter(TupleExpr node)private TupleExprQueryJoinOptimizer.JoinVisitor. getNextSubselect(java.util.List<TupleExpr> currentList, java.util.List<TupleExpr> joinArgs)protected TupleExprQueryJoinOptimizer.JoinVisitor. selectNextTupleExpr(java.util.List<TupleExpr> expressions, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap)Selects from a list of tuple expressions the next tuple expression that should be evaluated.Methods in org.eclipse.rdf4j.query.algebra.evaluation.optimizer that return types with arguments of type TupleExpr Modifier and Type Method Description private java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. getExtensionTupleExprs(java.util.List<TupleExpr> expressions)protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. getSubSelects(java.util.List<TupleExpr> expressions)protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. reorderSubselects(java.util.List<TupleExpr> subSelects)Determines an optimal ordering of subselect join arguments, based on variable bindings.Methods in org.eclipse.rdf4j.query.algebra.evaluation.optimizer with parameters of type TupleExpr Modifier and Type Method Description private TupleExprDisjunctiveConstraintOptimizer.OrSameTermOptimizer. findNotFilter(TupleExpr node)protected <L extends java.util.List<TupleExpr>>
LQueryJoinOptimizer.JoinVisitor. getJoinArgs(TupleExpr tupleExpr, L joinArgs)protected java.util.List<Var>QueryJoinOptimizer.JoinVisitor. getStatementPatternVars(TupleExpr tupleExpr)protected doubleQueryJoinOptimizer.JoinVisitor. getTupleExprCost(TupleExpr tupleExpr, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap)private static booleanQueryJoinOptimizer. hasCachedCardinality(TupleExpr tupleExpr)private booleanConjunctiveConstraintSplitterOptimizer.ConstraintVisitor. isWithinBindingScope(ValueExpr condition, TupleExpr node)voidBindingAssignerOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidBindingSetAssignmentInlinerOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidCompareOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)Applies generally applicable optimizations to the supplied query: variable assignments are inlined.voidConjunctiveConstraintSplitterOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidConstantOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)Applies generally applicable optimizations to the supplied query: variable assignments are inlined.voidDisjunctiveConstraintOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidFilterOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidIterativeEvaluationOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidOrderLimitOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidParentReferenceChecker. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidParentReferenceCleaner. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidProjectionRemovalOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidQueryJoinOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)Applies generally applicable optimizations: path expressions are sorted from more to less specific.voidQueryModelNormalizerOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)voidRegexAsStringFunctionOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)Applies generally applicable optimizations to the supplied query: variable assignments are inlined.voidSameTermFilterOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)Applies generally applicable optimizations to the supplied query: variable assignments are inlined.voidUnionScopeChangeOptimizer. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)private voidQueryJoinOptimizer.JoinVisitor. optimizePriorityJoin(java.util.Set<java.lang.String> origBoundVars, TupleExpr join)private voidFilterOptimizer.FilterRelocator. relocate(Filter filter, TupleExpr newFilterArg)Method parameters in org.eclipse.rdf4j.query.algebra.evaluation.optimizer with type arguments of type TupleExpr Modifier and Type Method Description protected java.util.List<Extension>QueryJoinOptimizer.JoinVisitor. getExtensions(java.util.List<TupleExpr> expressions)private java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. getExtensionTupleExprs(java.util.List<TupleExpr> expressions)private TupleExprQueryJoinOptimizer.JoinVisitor. getNextSubselect(java.util.List<TupleExpr> currentList, java.util.List<TupleExpr> joinArgs)protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. getSubSelects(java.util.List<TupleExpr> expressions)protected doubleQueryJoinOptimizer.JoinVisitor. getTupleExprCost(TupleExpr tupleExpr, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap)protected java.util.List<TupleExpr>QueryJoinOptimizer.JoinVisitor. reorderSubselects(java.util.List<TupleExpr> subSelects)Determines an optimal ordering of subselect join arguments, based on variable bindings.protected TupleExprQueryJoinOptimizer.JoinVisitor. selectNextTupleExpr(java.util.List<TupleExpr> expressions, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap)Selects from a list of tuple expressions the next tuple expression that should be evaluated.protected TupleExprQueryJoinOptimizer.JoinVisitor. selectNextTupleExpr(java.util.List<TupleExpr> expressions, java.util.Map<TupleExpr,java.lang.Double> cardinalityMap, java.util.Map<TupleExpr,java.util.List<Var>> varsMap, java.util.Map<Var,java.lang.Integer> varFreqMap)Selects from a list of tuple expressions the next tuple expression that should be evaluated.Constructors in org.eclipse.rdf4j.query.algebra.evaluation.optimizer with parameters of type TupleExpr Constructor Description ConstraintVisitor(TupleExpr tupleExpr)StatementPatternVarCollector(TupleExpr tupleExpr) -
Uses of TupleExpr in org.eclipse.rdf4j.query.algebra.evaluation.util
Methods in org.eclipse.rdf4j.query.algebra.evaluation.util with parameters of type TupleExpr Modifier and Type Method Description voidQueryOptimizerList. optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of TupleExpr in org.eclipse.rdf4j.query.algebra.helpers
Fields in org.eclipse.rdf4j.query.algebra.helpers with type parameters of type TupleExpr Modifier and Type Field Description private java.util.List<TupleExpr>TupleExprs.TupleExprChildrenVisitor. childrenMethods in org.eclipse.rdf4j.query.algebra.helpers that return types with arguments of type TupleExpr Modifier and Type Method Description static java.util.List<TupleExpr>TupleExprs. getChildren(TupleExpr t)ReturnsTupleExprchildren of the given node.java.util.List<TupleExpr>TupleExprs.TupleExprChildrenVisitor. getChildren()Methods in org.eclipse.rdf4j.query.algebra.helpers with parameters of type TupleExpr Modifier and Type Method Description static booleanTupleExprs. containsExtension(TupleExpr t)static booleanTupleExprs. containsProjection(TupleExpr t)Deprecated.UseTupleExprs.containsSubquery(TupleExpr)instead.static booleanTupleExprs. containsSubquery(TupleExpr t)Verifies if the suppliedTupleExprcontains aProjectionwith the subquery flag set to true (default).static java.util.List<TupleExpr>TupleExprs. getChildren(TupleExpr t)ReturnsTupleExprchildren of the given node.static booleanTupleExprs. isFilterExistsFunction(TupleExpr expr)Verifies if the supplied expression is a FILTER (NOT) EXISTS operationstatic booleanTupleExprs. isGraphPatternGroup(TupleExpr expr)Deprecated.UseTupleExprs.isVariableScopeChange(TupleExpr)instead.static booleanTupleExprs. isVariableScopeChange(TupleExpr expr)Verifies if the suppliedTupleExprrepresents a variable scope change. -
Uses of TupleExpr in org.eclipse.rdf4j.query.parser
Fields in org.eclipse.rdf4j.query.parser declared as TupleExpr Modifier and Type Field Description private TupleExprParsedQuery. tupleExprMethods in org.eclipse.rdf4j.query.parser that return TupleExpr Modifier and Type Method Description TupleExprParsedQuery. getTupleExpr()Gets the tuple expression underlying this operation.Methods in org.eclipse.rdf4j.query.parser with parameters of type TupleExpr Modifier and Type Method Description voidParsedQuery. setTupleExpr(TupleExpr tupleExpr)Gets the tuple expression underlying this operation.Constructors in org.eclipse.rdf4j.query.parser with parameters of type TupleExpr Constructor Description ParsedBooleanQuery(java.lang.String sourceString, TupleExpr tupleExpr)Creates a new boolean query for the supplied tuple expression.ParsedBooleanQuery(TupleExpr tupleExpr)Creates a new boolean query for the supplied tuple expression.ParsedDescribeQuery(java.lang.String sourceString, TupleExpr tupleExpr)Creates a new graph query for the supplied tuple expression.ParsedDescribeQuery(java.lang.String sourceString, TupleExpr tupleExpr, java.util.Map<java.lang.String,java.lang.String> namespaces)Creates a new graph query.ParsedDescribeQuery(TupleExpr tupleExpr)Creates a new graph query for the supplied tuple expression.ParsedDescribeQuery(TupleExpr tupleExpr, java.util.Map<java.lang.String,java.lang.String> namespaces)Creates a new graph query.ParsedGraphQuery(java.lang.String sourceString, TupleExpr tupleExpr)Creates a new graph query for the supplied tuple expression.ParsedGraphQuery(java.lang.String sourceString, TupleExpr tupleExpr, java.util.Map<java.lang.String,java.lang.String> namespaces)Creates a new graph query.ParsedGraphQuery(TupleExpr tupleExpr)Creates a new graph query for the supplied tuple expression.ParsedGraphQuery(TupleExpr tupleExpr, java.util.Map<java.lang.String,java.lang.String> namespaces)Creates a new graph query.ParsedQuery(java.lang.String sourceString, TupleExpr tupleExpr)Creates a new query object.ParsedQuery(java.lang.String sourceString, TupleExpr tupleExpr, Dataset dataset)Creates a new query object.ParsedQuery(TupleExpr tupleExpr)Creates a new query object.ParsedQuery(TupleExpr tupleExpr, Dataset dataset)Creates a new query object.ParsedTupleQuery(java.lang.String sourceString, TupleExpr tupleExpr)Creates a new tuple query for the supplied tuple expression.ParsedTupleQuery(TupleExpr tupleExpr)Creates a new tuple query for the supplied tuple expression. -
Uses of TupleExpr in org.eclipse.rdf4j.query.parser.sparql
Fields in org.eclipse.rdf4j.query.parser.sparql declared as TupleExpr Modifier and Type Field Description (package private) TupleExprUpdateExprBuilder. whereFields in org.eclipse.rdf4j.query.parser.sparql with type parameters of type TupleExpr Modifier and Type Field Description private java.util.List<java.util.Map.Entry<TupleExpr,java.util.List<ValueExpr>>>GraphPattern. optionalTEsThe optional tuple expressions in this graph pattern, as a list of Key-Value pairs with the tuple expression as the key and a list of constraints applicable to the tuple expression as the value.private java.util.List<TupleExpr>GraphPattern. requiredTEsThe required tuple expressions in this graph pattern.Methods in org.eclipse.rdf4j.query.parser.sparql that return TupleExpr Modifier and Type Method Description TupleExprConstructorBuilder. buildConstructor(TupleExpr bodyExpr, boolean distinct, boolean reduced)TupleExprConstructorBuilder. buildConstructor(TupleExpr bodyExpr, TupleExpr constructExpr, boolean distinct, boolean reduced)private TupleExprConstructorBuilder. buildConstructor(TupleExpr bodyExpr, TupleExpr constructExpr, boolean explicitConstructor, boolean distinct, boolean reduced)(package private) TupleExprGraphPattern. buildJoinFromRequiredTEs()Build a single tuple expression representing _only_ the basic graph pattern, by joining the required TEsTupleExprGraphPattern. buildOptionalTE(TupleExpr result)Build optionals to the supplied TEprivate TupleExprSPARQLParser. buildQueryModel(Node qc)TupleExprGraphPattern. buildTupleExpr()Builds a combined tuple expression from the tuple expressions and constraints in this graph pattern.private TupleExprTupleExprBuilder. createTupleExprForNegatedPropertySets(java.util.List<PropertySetElem> nps, TupleExprBuilder.PathSequenceContext pathSequenceContext)private TupleExprTupleExprBuilder. handlePathModifiers(StatementPattern.Scope scope, Var subjVar, TupleExpr te, Var endVar, Var contextVar, long lowerBound, long upperBound)private TupleExprTupleExprBuilder. processHavingClause(ASTHavingClause havingNode, TupleExpr tupleExpr, Group group)private TupleExprTupleExprBuilder. processOrderClause(ASTOrderClause orderNode, TupleExpr tupleExpr, Group group)TupleExprTupleExprBuilder. visit(ASTAskQuery node, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTConstructQuery node, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTConstruct node, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTDescribeQuery node, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTDescribe node, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTGraphPatternGroup node, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTPathAlternative pathAltNode, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTPathElt pathElement, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTPathSequence pathSeqNode, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTQueryContainer node, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTSelectQuery node, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTSelect node, java.lang.Object data)TupleExprTupleExprBuilder. visit(ASTTripleRef node, java.lang.Object data)TupleExprUpdateExprBuilder. visit(ASTDeleteClause node, java.lang.Object data)TupleExprUpdateExprBuilder. visit(ASTInsertClause node, java.lang.Object data)TupleExprUpdateExprBuilder. visit(ASTQuadsNotTriples node, java.lang.Object data)TupleExprUpdateExprBuilder. visit(ASTTripleRef node, java.lang.Object data)Methods in org.eclipse.rdf4j.query.parser.sparql that return types with arguments of type TupleExpr Modifier and Type Method Description java.util.List<java.util.Map.Entry<TupleExpr,java.util.List<ValueExpr>>>GraphPattern. getOptionalTEs()Retrieves the optional tuple expressions as a list of tuples with the tuple expression as the key and the list of value expressions as the value.java.util.List<TupleExpr>GraphPattern. getRequiredTEs()Methods in org.eclipse.rdf4j.query.parser.sparql with parameters of type TupleExpr Modifier and Type Method Description voidGraphPattern. addOptionalTE(TupleExpr te, java.util.List<ValueExpr> constraints)add the supplied tuple expression as an optional expression, with a list of constraints that hold as conditions.voidGraphPattern. addRequiredTE(TupleExpr te)TupleExprConstructorBuilder. buildConstructor(TupleExpr bodyExpr, boolean distinct, boolean reduced)TupleExprConstructorBuilder. buildConstructor(TupleExpr bodyExpr, TupleExpr constructExpr, boolean distinct, boolean reduced)private TupleExprConstructorBuilder. buildConstructor(TupleExpr bodyExpr, TupleExpr constructExpr, boolean explicitConstructor, boolean distinct, boolean reduced)TupleExprGraphPattern. buildOptionalTE(TupleExpr result)Build optionals to the supplied TEprivate TupleExprTupleExprBuilder. handlePathModifiers(StatementPattern.Scope scope, Var subjVar, TupleExpr te, Var endVar, Var contextVar, long lowerBound, long upperBound)private TupleExprTupleExprBuilder. processHavingClause(ASTHavingClause havingNode, TupleExpr tupleExpr, Group group)private TupleExprTupleExprBuilder. processOrderClause(ASTOrderClause orderNode, TupleExpr tupleExpr, Group group) -
Uses of TupleExpr in org.eclipse.rdf4j.queryrender
Methods in org.eclipse.rdf4j.queryrender with parameters of type TupleExpr Modifier and Type Method Description abstract java.lang.StringBaseTupleExprRenderer. render(TupleExpr theExpr)Render the TupleExpr as a query or query fragment depending on what kind of TupleExpr it is -
Uses of TupleExpr in org.eclipse.rdf4j.queryrender.sparql
Fields in org.eclipse.rdf4j.queryrender.sparql with type parameters of type TupleExpr Modifier and Type Field Description private java.util.Map<TupleExpr,Var>ContextCollector. mContextsMaps TupleExpr to contexts.private java.util.Map<TupleExpr,Var>SparqlTupleExprRenderer. mContextsMethods in org.eclipse.rdf4j.queryrender.sparql that return types with arguments of type TupleExpr Modifier and Type Method Description (package private) static java.util.Map<TupleExpr,Var>ContextCollector. collectContexts(TupleExpr theTupleExpr)Methods in org.eclipse.rdf4j.queryrender.sparql with parameters of type TupleExpr Modifier and Type Method Description private voidContextCollector. binaryOpMeet(TupleExpr theCurrentExpr, TupleExpr theLeftExpr, TupleExpr theRightExpr)(package private) static java.util.Map<TupleExpr,Var>ContextCollector. collectContexts(TupleExpr theTupleExpr)private voidSparqlTupleExprRenderer. ctxClose(TupleExpr theExpr)private voidSparqlTupleExprRenderer. ctxOpen(TupleExpr theExpr)java.lang.StringSparqlTupleExprRenderer. render(TupleExpr theExpr)Render the TupleExpr as a query or query fragment depending on what kind of TupleExpr it isprivate java.lang.StringSparqlTupleExprRenderer. renderTupleExpr(TupleExpr theExpr)Renders the tuple expression as a query string.private java.lang.StringSparqlValueExprRenderer. renderTupleExpr(TupleExpr theExpr)Renders the tuple expression as a query string.private voidContextCollector. sameCtxCheck(TupleExpr theCurrentExpr, TupleExpr theLeftExpr, Var theLeftCtx, TupleExpr theRightExpr, Var theRightCtx) -
Uses of TupleExpr in org.eclipse.rdf4j.queryrender.sparql.experimental
Fields in org.eclipse.rdf4j.queryrender.sparql.experimental declared as TupleExpr Modifier and Type Field Description TupleExprAbstractSerializableParsedQuery. whereClauseMethods in org.eclipse.rdf4j.queryrender.sparql.experimental with parameters of type TupleExpr Modifier and Type Method Description voidPreprocessedQuerySerializer. meetWhereClause(TupleExpr whereClause)Serializes the TupleExpr serving as a WHERE clause of the query.java.lang.StringSparqlQueryRenderer. render(TupleExpr theExpr)SerializableParsedTupleQueryParsedQueryPreprocessor. transformToSerialize(TupleExpr tupleExpr)Processes the incoming parsedTupleExprcollecting the information required for rendering. -
Uses of TupleExpr in org.eclipse.rdf4j.repository.sail.helpers
Methods in org.eclipse.rdf4j.repository.sail.helpers with parameters of type TupleExpr Modifier and Type Method Description private voidSailUpdateExecutor. deleteBoundTriples(BindingSet whereBinding, TupleExpr deleteClause, UpdateContext uc)private CloseableIteration<? extends BindingSet,QueryEvaluationException>SailUpdateExecutor. evaluateWhereClause(TupleExpr whereClause, UpdateContext uc, int maxExecutionTime)private voidSailUpdateExecutor. insertBoundTriples(BindingSet whereBinding, TupleExpr insertClause, UpdateContext uc) -
Uses of TupleExpr in org.eclipse.rdf4j.repository.sparql.federation
Fields in org.eclipse.rdf4j.repository.sparql.federation declared as TupleExpr Modifier and Type Field Description protected TupleExprJoinExecutorBase. rightArgConstructors in org.eclipse.rdf4j.repository.sparql.federation with parameters of type TupleExpr Constructor Description JoinExecutorBase(CloseableIteration<T,QueryEvaluationException> leftIter, TupleExpr rightArg, BindingSet bindings) -
Uses of TupleExpr in org.eclipse.rdf4j.sail
Methods in org.eclipse.rdf4j.sail that return types with arguments of type TupleExpr Modifier and Type Method Description default java.util.Optional<TupleExpr>SailConnection. prepareQuery(QueryLanguage ql, Query.QueryType type, java.lang.String query, java.lang.String baseURI)Allows the SailConnection to bypass the standard query parser and provide its own internalTupleExprimplementation.Methods in org.eclipse.rdf4j.sail with parameters of type TupleExpr Modifier and Type Method Description CloseableIteration<? extends BindingSet,QueryEvaluationException>SailConnection. evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)Evaluates the supplied TupleExpr on the data contained in this Sail object, using the (optional) dataset and supplied bindings as input parameters.default ExplanationSailConnection. explain(Explanation.Level level, TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred, int timeoutSeconds)Explain how the TupleExpr will be (or has been) executed/evaluated by returning a TupleExpr (which may or may not be the provided TupleExpr) that has gone through zero or more of the stages prior to and also including execution as specified by the provided level. -
Uses of TupleExpr in org.eclipse.rdf4j.sail.base
Methods in org.eclipse.rdf4j.sail.base with parameters of type TupleExpr Modifier and Type Method Description protected CloseableIteration<? extends BindingSet,QueryEvaluationException>SailSourceConnection. evaluateInternal(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)ExplanationSailSourceConnection. explain(Explanation.Level level, TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred, int timeoutSeconds)private booleanSailSourceConnection. runQueryForExplain(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred, int timeoutSeconds) -
Uses of TupleExpr in org.eclipse.rdf4j.sail.helpers
Fields in org.eclipse.rdf4j.sail.helpers declared as TupleExpr Modifier and Type Field Description private TupleExprTupleExprWrapperIteration. tupleExprprivate TupleExprTupleExprWrapperIteration. tupleExprCloneMethods in org.eclipse.rdf4j.sail.helpers that return TupleExpr Modifier and Type Method Description TupleExprTupleExprWrapperIteration. getTupleExpr()TupleExprTupleExprWrapperIteration. getTupleExprClone()Methods in org.eclipse.rdf4j.sail.helpers that return types with arguments of type TupleExpr Modifier and Type Method Description java.util.Optional<TupleExpr>SailConnectionWrapper. prepareQuery(QueryLanguage ql, Query.QueryType type, java.lang.String query, java.lang.String baseURI)Methods in org.eclipse.rdf4j.sail.helpers with parameters of type TupleExpr Modifier and Type Method Description CloseableIteration<? extends BindingSet,QueryEvaluationException>AbstractSailConnection. evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)CloseableIteration<? extends BindingSet,QueryEvaluationException>SailConnectionWrapper. evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)protected abstract CloseableIteration<? extends BindingSet,QueryEvaluationException>AbstractSailConnection. evaluateInternal(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)ExplanationSailConnectionWrapper. explain(Explanation.Level level, TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred, int timeoutSeconds)Constructors in org.eclipse.rdf4j.sail.helpers with parameters of type TupleExpr Constructor Description TupleExprWrapperIteration(CloseableIteration<T,X> delegate, TupleExpr tupleExpr) -
Uses of TupleExpr in org.eclipse.rdf4j.sail.inferencer
Methods in org.eclipse.rdf4j.sail.inferencer with parameters of type TupleExpr Modifier and Type Method Description CloseableIteration<? extends BindingSet,QueryEvaluationException>InferencerConnectionWrapper. evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)CallsInferencerConnectionWrapper.flushUpdates()before forwarding the call to the wrapped connection. -
Uses of TupleExpr in org.eclipse.rdf4j.sail.lucene
Methods in org.eclipse.rdf4j.sail.lucene with parameters of type TupleExpr Modifier and Type Method Description CloseableIteration<? extends BindingSet,QueryEvaluationException>LuceneSailConnection. evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)private CloseableIteration<? extends BindingSet,QueryEvaluationException>LuceneSailConnection. evaluateInternal(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)voidDistanceQuerySpecBuilder. process(TupleExpr tupleExpr, BindingSet bindings, java.util.Collection<SearchQueryEvaluator> results)voidGeoRelationQuerySpecBuilder. process(TupleExpr tupleExpr, BindingSet bindings, java.util.Collection<SearchQueryEvaluator> results)java.util.Set<QuerySpec>QuerySpecBuilder. process(TupleExpr tupleExpr, BindingSet bindings)Deprecated.voidQuerySpecBuilder. process(TupleExpr tupleExpr, BindingSet bindings, java.util.Collection<SearchQueryEvaluator> result)Appends a set of QuerySpecs embodying all necessary information to perform the Lucene query embedded in a TupleExpr.voidSearchQueryInterpreter. process(TupleExpr tupleExpr, BindingSet bindings, java.util.Collection<SearchQueryEvaluator> specs)Processes a TupleExpr into a set of SearchQueryEvaluators. -
Uses of TupleExpr in org.eclipse.rdf4j.sail.shacl.ast
Fields in org.eclipse.rdf4j.sail.shacl.ast with type parameters of type TupleExpr Modifier and Type Field Description private static com.google.common.cache.Cache<java.lang.String,TupleExpr>SparqlQueryParserCache. PARSER_QUERY_CACHEMethods in org.eclipse.rdf4j.sail.shacl.ast that return TupleExpr Modifier and Type Method Description static TupleExprSparqlQueryParserCache. get(java.lang.String query) -
Uses of TupleExpr in org.eclipse.rdf4j.sail.shacl.ast.planNodes
Fields in org.eclipse.rdf4j.sail.shacl.ast.planNodes declared as TupleExpr Modifier and Type Field Description private TupleExprBulkedExternalInnerJoin. parsedQueryprivate TupleExprBulkedExternalLeftOuterJoin. parsedQueryprivate TupleExprExternalFilterByQuery. queryMethods in org.eclipse.rdf4j.sail.shacl.ast.planNodes that return TupleExpr Modifier and Type Method Description private TupleExprBindSelect. getParsedQuery(int targetChainSize)(package private) TupleExprAbstractBulkJoinPlanNode. parseQuery(java.lang.String query)Methods in org.eclipse.rdf4j.sail.shacl.ast.planNodes with parameters of type TupleExpr Modifier and Type Method Description private voidAbstractBulkJoinPlanNode. executeQuery(java.util.ArrayDeque<ValidationTuple> right, SailConnection connection, Dataset dataset, TupleExpr parsedQuery)(package private) voidAbstractBulkJoinPlanNode. runQuery(java.util.ArrayDeque<ValidationTuple> left, java.util.ArrayDeque<ValidationTuple> right, SailConnection connection, TupleExpr parsedQuery, Dataset dataset, Resource[] dataGraph, boolean skipBasedOnPreviousConnection, SailConnection previousStateConnection)private voidAbstractBulkJoinPlanNode. updateQuery(TupleExpr parsedQuery, java.util.List<BindingSet> newBindindingSet)private voidBindSelect. updateQuery(TupleExpr parsedQuery, java.util.List<BindingSet> newBindindingset, int expectedSize) -
Uses of TupleExpr in org.eclipse.rdf4j.spin
Fields in org.eclipse.rdf4j.spin declared as TupleExpr Modifier and Type Field Description (package private) TupleExprSpinParser.SpinVisitor. tupleNode(package private) TupleExprSpinParser.SpinVisitor. tupleRootMethods in org.eclipse.rdf4j.spin that return TupleExpr Modifier and Type Method Description TupleExprSpinParser.SpinVisitor. getTupleExpr()private TupleExprSpinParser. makeQueryRootIfNeeded(TupleExpr tupleExpr)TupleExprSpinParser.SpinVisitor. visitGroupGraphPattern(Resource group)private TupleExprSpinParser.SpinVisitor. visitHaving(Resource having)TupleExprSpinParser.SpinVisitor. visitWhere(Resource query)Methods in org.eclipse.rdf4j.spin with parameters of type TupleExpr Modifier and Type Method Description private TupleExprSpinParser. makeQueryRootIfNeeded(TupleExpr tupleExpr)private SpinRenderer.ExtensionContextSpinRenderer.SpinVisitor. meetExtension(TupleExpr expr)private voidSpinParser.SpinVisitor. visitPattern(Resource r, java.util.Set<IRI> types, TupleExpr currentGroupExpr)private voidSpinRenderer.SpinVisitor. visitWhere(TupleExpr where)
-