Uses of Interface
org.openrdf.query.BindingSet

Packages that use BindingSet
org.openrdf.query Interfaces and classes for handling queries and query results. 
org.openrdf.query.algebra Query Algebra 
org.openrdf.query.algebra.evaluation   
org.openrdf.query.algebra.evaluation.federation   
org.openrdf.query.algebra.evaluation.impl   
org.openrdf.query.algebra.evaluation.iterator   
org.openrdf.query.algebra.evaluation.util   
org.openrdf.query.dawg Functionality to convert tuple query results to and from the Data Access Working Group Test Result Set RDF Vocabulary 
org.openrdf.query.impl   
org.openrdf.query.parser.sparql The SPARQL query engine. 
org.openrdf.query.resultio.binary   
org.openrdf.query.resultio.sparqljson A writer for the SPARQL Query Results JSON Format 
org.openrdf.query.resultio.sparqlxml Parsers and writers for the SPARQL Query Results XML Format 
org.openrdf.query.resultio.text.csv   
org.openrdf.query.resultio.text.tsv   
org.openrdf.repository.sail Repository implementation for local storage backends. 
org.openrdf.repository.sparql.query   
org.openrdf.sail RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an API for RDF repositories. 
org.openrdf.sail.helpers Generic utility classes for RDF Sail implementations. 
org.openrdf.sail.inferencer   
org.openrdf.sail.memory An implementation of the RDF SAIL API that uses main memory for storage. 
org.openrdf.sail.nativerdf Native RDF storage backend. 
org.openrdf.sail.rdbms   
org.openrdf.sail.rdbms.evaluation   
org.openrdf.sail.rdbms.iteration   
org.openrdf.sail.rdbms.optimizers   
org.openrdf.sail.rdbms.postgresql   
 

Uses of BindingSet in org.openrdf.query
 

Methods in org.openrdf.query that return BindingSet
 BindingSet Operation.getBindings()
          Retrieves the bindings that have been set on this operation.
 

Methods in org.openrdf.query with parameters of type BindingSet
static boolean QueryResultUtil.bindingSetsCompatible(BindingSet bs1, BindingSet bs2)
          Check whether two BindingSets are compatible.
 void TupleQueryResultHandlerBase.handleSolution(BindingSet bindingSet)
           
 void TupleQueryResultHandler.handleSolution(BindingSet bindingSet)
          Handles a solution.
 

Uses of BindingSet in org.openrdf.query.algebra
 

Methods in org.openrdf.query.algebra that return types with arguments of type BindingSet
 List<BindingSet> BindingSetAssignment.getBindingSets()
           
 

Method parameters in org.openrdf.query.algebra with type arguments of type BindingSet
 void BindingSetAssignment.setBindingSets(List<BindingSet> bindingSets)
           
 

Uses of BindingSet in org.openrdf.query.algebra.evaluation
 

Classes in org.openrdf.query.algebra.evaluation that implement BindingSet
 class QueryBindingSet
          An implementation of the BindingSet interface that is used to evalate query object models.
 

Methods in org.openrdf.query.algebra.evaluation that return types with arguments of type BindingSet
 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.
 

Methods in org.openrdf.query.algebra.evaluation with parameters of type BindingSet
 void QueryBindingSet.addAll(BindingSet bindingSet)
           
 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.
 Value EvaluationStrategy.evaluate(ValueExpr expr, BindingSet bindings)
          Gets the value of this expression.
 boolean EvaluationStrategy.isTrue(ValueExpr expr, BindingSet bindings)
          Evaluates the boolean expression on the supplied TripleSource object.
 void QueryOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 

Constructors in org.openrdf.query.algebra.evaluation with parameters of type BindingSet
QueryBindingSet(BindingSet bindingSet)
           
 

Uses of BindingSet in org.openrdf.query.algebra.evaluation.federation
 

Fields in org.openrdf.query.algebra.evaluation.federation declared as BindingSet
protected  BindingSet JoinExecutorBase.bindings
           
protected  BindingSet ServiceCrossProductIteration.currentInputBinding
           
 

Fields in org.openrdf.query.algebra.evaluation.federation with type parameters of type BindingSet
protected  List<BindingSet> ServiceJoinConversionIteration.bindings
           
protected  Collection<BindingSet> ServiceFallbackIteration.bindings
           
protected  List<BindingSet> ServiceCrossProductIteration.inputBindings
           
protected  Iterator<BindingSet> ServiceCrossProductIteration.inputBindingsIterator
           
protected  CloseableIteration<BindingSet,QueryEvaluationException> ServiceCrossProductIteration.resultIteration
           
 

Methods in org.openrdf.query.algebra.evaluation.federation that return BindingSet
protected  BindingSet ServiceJoinConversionIteration.convert(BindingSet bIn)
           
protected  BindingSet ServiceCrossProductIteration.getNextElement()
           
 

Methods in org.openrdf.query.algebra.evaluation.federation that return types with arguments of type BindingSet
 CloseableIteration<BindingSet,QueryEvaluationException> SPARQLFederatedService.evaluate(Service service, CloseableIteration<BindingSet,QueryEvaluationException> bindings, String baseUri)
           
 CloseableIteration<BindingSet,QueryEvaluationException> FederatedService.evaluate(Service service, CloseableIteration<BindingSet,QueryEvaluationException> bindings, String baseUri)
          Evaluate the provided SPARQL query at this federated service, possibilities for vectored evaluation.
 CloseableIteration<BindingSet,QueryEvaluationException> SPARQLFederatedService.evaluate(String sparqlQueryString, BindingSet bindings, String baseUri, FederatedService.QueryType type, Service service)
          Evaluate the provided sparqlQueryString at the initialized SPARQLRepository of this FederatedService.
 CloseableIteration<BindingSet,QueryEvaluationException> FederatedService.evaluate(String sparqlQueryString, BindingSet bindings, String baseUri, FederatedService.QueryType type, Service service)
          Evaluate the provided SPARQL query at this federated service.
protected  CloseableIteration<BindingSet,QueryEvaluationException> SPARQLFederatedService.evaluateInternal(Service service, CloseableIteration<BindingSet,QueryEvaluationException> bindings, String baseUri)
          Evaluate the SPARQL query that can be constructed from the SERVICE node at the initialized SPARQLRepository of this FederatedService.
 

Methods in org.openrdf.query.algebra.evaluation.federation with parameters of type BindingSet
protected  BindingSet ServiceJoinConversionIteration.convert(BindingSet bIn)
           
 CloseableIteration<BindingSet,QueryEvaluationException> SPARQLFederatedService.evaluate(String sparqlQueryString, BindingSet bindings, String baseUri, FederatedService.QueryType type, Service service)
          Evaluate the provided sparqlQueryString at the initialized SPARQLRepository of this FederatedService.
 CloseableIteration<BindingSet,QueryEvaluationException> FederatedService.evaluate(String sparqlQueryString, BindingSet bindings, String baseUri, FederatedService.QueryType type, Service service)
          Evaluate the provided SPARQL query at this federated service.
 

Method parameters in org.openrdf.query.algebra.evaluation.federation with type arguments of type BindingSet
 CloseableIteration<BindingSet,QueryEvaluationException> SPARQLFederatedService.evaluate(Service service, CloseableIteration<BindingSet,QueryEvaluationException> bindings, String baseUri)
           
 CloseableIteration<BindingSet,QueryEvaluationException> FederatedService.evaluate(Service service, CloseableIteration<BindingSet,QueryEvaluationException> bindings, String baseUri)
          Evaluate the provided SPARQL query at this federated service, possibilities for vectored evaluation.
protected  CloseableIteration<BindingSet,QueryEvaluationException> SPARQLFederatedService.evaluateInternal(Service service, CloseableIteration<BindingSet,QueryEvaluationException> bindings, String baseUri)
          Evaluate the SPARQL query that can be constructed from the SERVICE node at the initialized SPARQLRepository of this FederatedService.
 

Constructors in org.openrdf.query.algebra.evaluation.federation with parameters of type BindingSet
JoinExecutorBase(CloseableIteration<T,QueryEvaluationException> leftIter, TupleExpr rightArg, BindingSet bindings)
           
ServiceJoinIterator(CloseableIteration<BindingSet,QueryEvaluationException> leftIter, Service service, BindingSet bindings, EvaluationStrategy strategy)
          Construct a service join iteration to use vectored evaluation.
 

Constructor parameters in org.openrdf.query.algebra.evaluation.federation with type arguments of type BindingSet
ServiceCrossProductIteration(CloseableIteration<BindingSet,QueryEvaluationException> resultIteration, List<BindingSet> inputBindings)
           
ServiceCrossProductIteration(CloseableIteration<BindingSet,QueryEvaluationException> resultIteration, List<BindingSet> inputBindings)
           
ServiceFallbackIteration(Service service, String preparedQuery, Collection<BindingSet> bindings, FederatedService federatedService)
           
ServiceJoinConversionIteration(CloseableIteration<BindingSet,QueryEvaluationException> iter, List<BindingSet> bindings)
           
ServiceJoinConversionIteration(CloseableIteration<BindingSet,QueryEvaluationException> iter, List<BindingSet> bindings)
           
ServiceJoinIterator(CloseableIteration<BindingSet,QueryEvaluationException> leftIter, Service service, BindingSet bindings, EvaluationStrategy strategy)
          Construct a service join iteration to use vectored evaluation.
 

Uses of BindingSet in org.openrdf.query.algebra.evaluation.impl
 

Fields in org.openrdf.query.algebra.evaluation.impl declared as BindingSet
protected  BindingSet BindingAssigner.VarVisitor.bindings
           
 

Methods in org.openrdf.query.algebra.evaluation.impl that return types with arguments of type BindingSet
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(ArbitraryLengthPath alp, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(BinaryTupleOperator expr, BindingSet bindings)
           
abstract  CloseableIteration<BindingSet,QueryEvaluationException> ExternalSet.evaluate(BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(BindingSetAssignment bsa, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Difference difference, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Distinct distinct, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(EmptySet emptySet, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Extension extension, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(ExternalSet external, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Filter filter, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Group node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Intersection intersection, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Join join, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(LeftJoin leftJoin, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(MultiProjection multiProjection, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Order node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Projection projection, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Reduced reduced, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Service service, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(SingletonSet singletonSet, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Slice slice, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(StatementPattern sp, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(TupleExpr expr, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(UnaryTupleOperator expr, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Union union, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(ZeroLengthPath zlp, BindingSet bindings)
           
 

Methods in org.openrdf.query.algebra.evaluation.impl with parameters of type BindingSet
 Value EvaluationStrategyImpl.evaluate(And node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(ArbitraryLengthPath alp, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(BinaryTupleOperator expr, BindingSet bindings)
           
abstract  CloseableIteration<BindingSet,QueryEvaluationException> ExternalSet.evaluate(BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(BindingSetAssignment bsa, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(BNodeGenerator node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Bound node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Coalesce node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(CompareAll node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(CompareAny node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Compare node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Datatype node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Difference difference, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Distinct distinct, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(EmptySet emptySet, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Exists node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Extension extension, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(ExternalSet external, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Filter filter, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(FunctionCall node, BindingSet bindings)
          Evaluates a function.
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Group node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(If node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(In node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Intersection intersection, BindingSet bindings)
           
 URI EvaluationStrategyImpl.evaluate(IRIFunction node, BindingSet bindings)
          Creates a URI from the operand value (a plain literal or a URI).
 Value EvaluationStrategyImpl.evaluate(IsBNode node, BindingSet bindings)
          Determines whether the operand (a variable) contains a BNode.
 Value EvaluationStrategyImpl.evaluate(IsLiteral node, BindingSet bindings)
          Determines whether the operand (a variable) contains a Literal.
 Value EvaluationStrategyImpl.evaluate(IsNumeric node, BindingSet bindings)
          Determines whether the operand (a variable) contains a numeric datatyped literal, i.e.
 Value EvaluationStrategyImpl.evaluate(IsResource node, BindingSet bindings)
          Determines whether the operand (a variable) contains a Resource.
 Value EvaluationStrategyImpl.evaluate(IsURI node, BindingSet bindings)
          Determines whether the operand (a variable) contains a URI.
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Join join, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Label node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Lang node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(LangMatches node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(LeftJoin leftJoin, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Like node, BindingSet bindings)
          Determines whether the two operands match according to the like operator.
 Value EvaluationStrategyImpl.evaluate(LocalName node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(MathExpr node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(MultiProjection multiProjection, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Namespace node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Not node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Or node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Order node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Projection projection, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Reduced reduced, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Regex node, BindingSet bindings)
          Determines whether the two operands match according to the regex operator.
 Value EvaluationStrategyImpl.evaluate(SameTerm node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Service service, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(SingletonSet singletonSet, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Slice slice, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(StatementPattern sp, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Str node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(TupleExpr expr, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(UnaryTupleOperator expr, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Union union, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(ValueConstant valueConstant, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(ValueExpr expr, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Var var, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(ZeroLengthPath zlp, BindingSet bindings)
           
protected  Value EvaluationStrategyImpl.getVarValue(Var var, BindingSet bindings)
           
 boolean EvaluationStrategyImpl.isTrue(ValueExpr expr, BindingSet bindings)
           
 void SubSelectJoinOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
          Applies generally applicable optimizations: Joins involving subselects are sorted according to the number of overlapping binding variables.
 void SameTermFilterOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
          Applies generally applicable optimizations to the supplied query: variable assignments are inlined.
 void QueryModelPruner.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
          Deprecated. Applies generally applicable optimizations: path expressions are sorted from more to less specific.
 void QueryModelNormalizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void QueryJoinOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
          Applies generally applicable optimizations: path expressions are sorted from more to less specific.
 void OrderLimitOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void IterativeEvaluationOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void FilterOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void DisjunctiveConstraintOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void ConstantOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
          Applies generally applicable optimizations to the supplied query: variable assignments are inlined.
 void ConjunctiveConstraintSplitter.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void CompareOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
          Applies generally applicable optimizations to the supplied query: variable assignments are inlined.
 void BindingAssigner.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 

Constructors in org.openrdf.query.algebra.evaluation.impl with parameters of type BindingSet
BindingAssigner.VarVisitor(BindingSet bindings)
           
 

Uses of BindingSet in org.openrdf.query.algebra.evaluation.iterator
 

Fields in org.openrdf.query.algebra.evaluation.iterator with type parameters of type BindingSet
protected  CloseableIteration<BindingSet,QueryEvaluationException> SilentIteration.iter
           
 

Methods in org.openrdf.query.algebra.evaluation.iterator that return BindingSet
protected  BindingSet ProjectionIterator.convert(BindingSet sourceBindings)
           
 BindingSet ExtensionIterator.convert(BindingSet sourceBindings)
           
protected  BindingSet SilentIteration.getNextElement()
           
protected  BindingSet MultiProjectionIterator.getNextElement()
           
protected  BindingSet LeftJoinIterator.getNextElement()
           
protected  BindingSet JoinIterator.getNextElement()
           
protected  BindingSet BottomUpJoinIterator.getNextElement()
           
protected  BindingSet BadlyDesignedLeftJoinIterator.getNextElement()
           
static BindingSet ProjectionIterator.project(ProjectionElemList projElemList, BindingSet sourceBindings, BindingSet parentBindings)
           
 

Methods in org.openrdf.query.algebra.evaluation.iterator that return types with arguments of type BindingSet
protected  Iteration<BindingSet,QueryEvaluationException> OrderIterator.createIteration()
           
 

Methods in org.openrdf.query.algebra.evaluation.iterator with parameters of type BindingSet
protected  boolean SPARQLMinusIteration.accept(BindingSet object)
           
protected  boolean FilterIterator.accept(BindingSet bindings)
           
protected  boolean CompatibleBindingSetFilter.accept(BindingSet outputBindings)
          Deprecated.  
protected  BindingSet ProjectionIterator.convert(BindingSet sourceBindings)
           
 BindingSet ExtensionIterator.convert(BindingSet sourceBindings)
           
static BindingSet ProjectionIterator.project(ProjectionElemList projElemList, BindingSet sourceBindings, BindingSet parentBindings)
           
 

Constructors in org.openrdf.query.algebra.evaluation.iterator with parameters of type BindingSet
BadlyDesignedLeftJoinIterator(EvaluationStrategy strategy, LeftJoin join, BindingSet inputBindings, Set<String> problemVars)
           
BottomUpJoinIterator(EvaluationStrategy strategy, Join join, BindingSet bindings)
           
CompatibleBindingSetFilter(CloseableIteration<BindingSet,QueryEvaluationException> iter, BindingSet inputBindings)
          Deprecated.  
GroupIterator.Key(BindingSet bindingSet)
           
GroupIterator(EvaluationStrategy strategy, Group group, BindingSet parentBindings)
           
JoinIterator(EvaluationStrategy strategy, Join join, BindingSet bindings)
           
LeftJoinIterator(EvaluationStrategy strategy, LeftJoin join, BindingSet bindings)
           
MultiProjectionIterator(MultiProjection multiProjection, CloseableIteration<BindingSet,QueryEvaluationException> iter, BindingSet bindings)
           
ProjectionIterator(Projection projection, CloseableIteration<BindingSet,QueryEvaluationException> iter, BindingSet parentBindings)
           
 

Constructor parameters in org.openrdf.query.algebra.evaluation.iterator with type arguments of type BindingSet
CompatibleBindingSetFilter(CloseableIteration<BindingSet,QueryEvaluationException> iter, BindingSet inputBindings)
          Deprecated.  
ExtensionIterator(Extension extension, CloseableIteration<BindingSet,QueryEvaluationException> iter, EvaluationStrategy strategy)
           
FilterIterator(Filter filter, CloseableIteration<BindingSet,QueryEvaluationException> iter, EvaluationStrategy strategy)
           
MultiProjectionIterator(MultiProjection multiProjection, CloseableIteration<BindingSet,QueryEvaluationException> iter, BindingSet bindings)
           
OrderIterator(CloseableIteration<BindingSet,QueryEvaluationException> iter, Comparator<BindingSet> comparator)
           
OrderIterator(CloseableIteration<BindingSet,QueryEvaluationException> iter, Comparator<BindingSet> comparator)
           
OrderIterator(CloseableIteration<BindingSet,QueryEvaluationException> iter, Comparator<BindingSet> comparator, long limit, boolean distinct)
           
OrderIterator(CloseableIteration<BindingSet,QueryEvaluationException> iter, Comparator<BindingSet> comparator, long limit, boolean distinct)
           
ProjectionIterator(Projection projection, CloseableIteration<BindingSet,QueryEvaluationException> iter, BindingSet parentBindings)
           
SilentIteration(CloseableIteration<BindingSet,QueryEvaluationException> iter)
           
SPARQLMinusIteration(Iteration<BindingSet,X> leftArg, Iteration<BindingSet,X> rightArg)
          Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.
SPARQLMinusIteration(Iteration<BindingSet,X> leftArg, Iteration<BindingSet,X> rightArg)
          Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.
SPARQLMinusIteration(Iteration<BindingSet,X> leftArg, Iteration<BindingSet,X> rightArg, boolean distinct)
          Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.
SPARQLMinusIteration(Iteration<BindingSet,X> leftArg, Iteration<BindingSet,X> rightArg, boolean distinct)
          Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument.
 

Uses of BindingSet in org.openrdf.query.algebra.evaluation.util
 

Methods in org.openrdf.query.algebra.evaluation.util with parameters of type BindingSet
 int OrderComparator.compare(BindingSet o1, BindingSet o2)
           
 void QueryOptimizerList.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 

Uses of BindingSet in org.openrdf.query.dawg
 

Methods in org.openrdf.query.dawg with parameters of type BindingSet
 void DAWGTestResultSetWriter.handleSolution(BindingSet bindingSet)
           
 

Uses of BindingSet in org.openrdf.query.impl
 

Classes in org.openrdf.query.impl that implement BindingSet
 class EmptyBindingSet
          An immutable empty BindingSet.
 class ListBindingSet
          A List-based implementation of the BindingSet interface.
 class MapBindingSet
          A Map-based implementation of the BindingSet interface.
 

Methods in org.openrdf.query.impl that return BindingSet
 BindingSet MutableTupleQueryResult.get(int index)
           
 BindingSet AbstractOperation.getBindings()
           
static BindingSet EmptyBindingSet.getInstance()
           
 BindingSet TupleQueryResultImpl.next()
           
 BindingSet MutableTupleQueryResult.next()
           
 BindingSet MutableTupleQueryResult.previous()
           
 BindingSet MutableTupleQueryResult.remove(int index)
           
 BindingSet MutableTupleQueryResult.set(int index, BindingSet bindingSet)
           
 

Methods in org.openrdf.query.impl with parameters of type BindingSet
 void MutableTupleQueryResult.append(BindingSet bindingSet)
           
 void TupleQueryResultBuilder.handleSolution(BindingSet bindingSet)
           
 void MutableTupleQueryResult.insert(BindingSet bindingSet)
          Inserts the specified binding set into the list.
 void MutableTupleQueryResult.insert(int index, BindingSet bindingSet)
           
 void MutableTupleQueryResult.set(BindingSet bindingSet)
           
 BindingSet MutableTupleQueryResult.set(int index, BindingSet bindingSet)
           
 

Constructors in org.openrdf.query.impl with parameters of type BindingSet
MutableTupleQueryResult(Collection<String> bindingNames, BindingSet... bindingSets)
           
 

Constructor parameters in org.openrdf.query.impl with type arguments of type BindingSet
MutableTupleQueryResult(Collection<String> bindingNames, Collection<? extends BindingSet> bindingSets)
          Creates a query result table with the supplied binding names.
MutableTupleQueryResult(Collection<String> bindingNames, Iteration<? extends BindingSet,E> bindingSetIter)
           
TupleQueryResultImpl(List<String> bindingNames, CloseableIteration<? extends BindingSet,QueryEvaluationException> bindingSetIter)
          Creates a query result object with the supplied binding names.
TupleQueryResultImpl(List<String> bindingNames, Iterable<? extends BindingSet> bindingSets)
          Creates a query result object with the supplied binding names.
TupleQueryResultImpl(List<String> bindingNames, Iterator<? extends BindingSet> bindingSetIter)
           
 

Uses of BindingSet in org.openrdf.query.parser.sparql
 

Methods in org.openrdf.query.parser.sparql that return BindingSet
 BindingSet TupleExprBuilder.visit(ASTBindingSet node, Object data)
           
 

Uses of BindingSet in org.openrdf.query.resultio.binary
 

Methods in org.openrdf.query.resultio.binary with parameters of type BindingSet
 void BinaryQueryResultWriter.handleSolution(BindingSet bindingSet)
           
 

Uses of BindingSet in org.openrdf.query.resultio.sparqljson
 

Methods in org.openrdf.query.resultio.sparqljson with parameters of type BindingSet
 void SPARQLResultsJSONWriter.handleSolution(BindingSet bindingSet)
           
 

Uses of BindingSet in org.openrdf.query.resultio.sparqlxml
 

Methods in org.openrdf.query.resultio.sparqlxml with parameters of type BindingSet
 void SPARQLResultsXMLWriter.handleSolution(BindingSet bindingSet)
           
 

Uses of BindingSet in org.openrdf.query.resultio.text.csv
 

Methods in org.openrdf.query.resultio.text.csv with parameters of type BindingSet
 void SPARQLResultsCSVWriter.handleSolution(BindingSet bindingSet)
           
 

Uses of BindingSet in org.openrdf.query.resultio.text.tsv
 

Methods in org.openrdf.query.resultio.text.tsv with parameters of type BindingSet
 void SPARQLResultsTSVWriter.handleSolution(BindingSet bindingSet)
           
 

Uses of BindingSet in org.openrdf.repository.sail
 

Methods in org.openrdf.repository.sail that return types with arguments of type BindingSet
protected  CloseableIteration<? extends BindingSet,QueryEvaluationException> SailQuery.enforceMaxQueryTime(CloseableIteration<? extends BindingSet,QueryEvaluationException> bindingsIter)
           
 

Method parameters in org.openrdf.repository.sail with type arguments of type BindingSet
protected  CloseableIteration<? extends BindingSet,QueryEvaluationException> SailQuery.enforceMaxQueryTime(CloseableIteration<? extends BindingSet,QueryEvaluationException> bindingsIter)
           
 

Constructor parameters in org.openrdf.repository.sail with type arguments of type BindingSet
SailQuery.QueryInterruptIteration(Iteration<? extends BindingSet,? extends QueryEvaluationException> iter, long timeLimit)
           
 

Uses of BindingSet in org.openrdf.repository.sparql.query
 

Classes in org.openrdf.repository.sparql.query that implement BindingSet
 class SPARQLQueryBindingSet
          An implementation of the BindingSet interface that is used to evalate query object models.
 

Methods in org.openrdf.repository.sparql.query that return BindingSet
 BindingSet SPARQLQuery.getBindings()
           
 BindingSet InsertBindingSetCursor.next()
           
 

Methods in org.openrdf.repository.sparql.query with parameters of type BindingSet
 void SPARQLQueryBindingSet.addAll(BindingSet bindingSet)
           
 void BackgroundTupleResult.handleSolution(BindingSet bindingSet)
           
 

Constructors in org.openrdf.repository.sparql.query with parameters of type BindingSet
InsertBindingSetCursor(CloseableIteration<BindingSet,QueryEvaluationException> delegate, BindingSet bindings)
           
SPARQLQueryBindingSet(BindingSet bindingSet)
           
 

Constructor parameters in org.openrdf.repository.sparql.query with type arguments of type BindingSet
BackgroundTupleResult(QueueCursor<BindingSet> queue, TupleQueryResultParser parser, InputStream in, org.apache.commons.httpclient.HttpMethod connection)
           
InsertBindingSetCursor(CloseableIteration<BindingSet,QueryEvaluationException> delegate, BindingSet bindings)
           
 

Uses of BindingSet in org.openrdf.sail
 

Methods in org.openrdf.sail that return types with arguments of type BindingSet
 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.
 

Methods in org.openrdf.sail with parameters of type BindingSet
 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.
 void SailConnection.executeUpdate(UpdateExpr updateExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 

Uses of BindingSet in org.openrdf.sail.helpers
 

Methods in org.openrdf.sail.helpers that return types with arguments of type BindingSet
 CloseableIteration<? extends BindingSet,QueryEvaluationException> SailConnectionWrapper.evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 CloseableIteration<? extends BindingSet,QueryEvaluationException> SailConnectionBase.evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
protected abstract  CloseableIteration<? extends BindingSet,QueryEvaluationException> SailConnectionBase.evaluateInternal(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 

Methods in org.openrdf.sail.helpers with parameters of type BindingSet
 CloseableIteration<? extends BindingSet,QueryEvaluationException> SailConnectionWrapper.evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 CloseableIteration<? extends BindingSet,QueryEvaluationException> SailConnectionBase.evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
protected abstract  CloseableIteration<? extends BindingSet,QueryEvaluationException> SailConnectionBase.evaluateInternal(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
protected  void SailUpdateExecutor.executeAdd(Add add, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
protected  void SailUpdateExecutor.executeClear(Clear clearExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
protected  void SailUpdateExecutor.executeCopy(Copy copy, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
protected  void SailUpdateExecutor.executeCreate(Create create, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
protected  void SailUpdateExecutor.executeDeleteData(DeleteData deleteDataExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
protected  void SailUpdateExecutor.executeInsertData(InsertData insertDataExpr, Dataset ds, BindingSet bindings, boolean includeInferred)
           
protected  void SailConnectionBase.executeInternal(UpdateExpr updateExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
protected  void SailUpdateExecutor.executeModify(Modify modify, Dataset ds, BindingSet bindings, boolean includeInferred)
           
protected  void SailUpdateExecutor.executeMove(Move move, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 void SailUpdateExecutor.executeUpdate(UpdateExpr updateExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 void SailConnectionWrapper.executeUpdate(UpdateExpr updateExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 void SailConnectionBase.executeUpdate(UpdateExpr updateExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 

Uses of BindingSet in org.openrdf.sail.inferencer
 

Methods in org.openrdf.sail.inferencer that return types with arguments of type BindingSet
 CloseableIteration<? extends BindingSet,QueryEvaluationException> InferencerConnectionWrapper.evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
          Calls InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped connection.
 

Methods in org.openrdf.sail.inferencer with parameters of type BindingSet
 CloseableIteration<? extends BindingSet,QueryEvaluationException> InferencerConnectionWrapper.evaluate(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
          Calls InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped connection.
 

Uses of BindingSet in org.openrdf.sail.memory
 

Methods in org.openrdf.sail.memory that return types with arguments of type BindingSet
protected  CloseableIteration<? extends BindingSet,QueryEvaluationException> MemoryStoreConnection.evaluateInternal(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 

Methods in org.openrdf.sail.memory with parameters of type BindingSet
protected  CloseableIteration<? extends BindingSet,QueryEvaluationException> MemoryStoreConnection.evaluateInternal(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 

Uses of BindingSet in org.openrdf.sail.nativerdf
 

Methods in org.openrdf.sail.nativerdf that return types with arguments of type BindingSet
protected  CloseableIteration<? extends BindingSet,QueryEvaluationException> NativeStoreConnection.evaluateInternal(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 

Methods in org.openrdf.sail.nativerdf with parameters of type BindingSet
protected  CloseableIteration<? extends BindingSet,QueryEvaluationException> NativeStoreConnection.evaluateInternal(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 

Uses of BindingSet in org.openrdf.sail.rdbms
 

Methods in org.openrdf.sail.rdbms that return types with arguments of type BindingSet
protected  CloseableIteration<BindingSet,QueryEvaluationException> RdbmsConnection.evaluateInternal(TupleExpr expr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 

Methods in org.openrdf.sail.rdbms with parameters of type BindingSet
protected  CloseableIteration<BindingSet,QueryEvaluationException> RdbmsConnection.evaluateInternal(TupleExpr expr, Dataset dataset, BindingSet bindings, boolean includeInferred)
           
 

Uses of BindingSet in org.openrdf.sail.rdbms.evaluation
 

Methods in org.openrdf.sail.rdbms.evaluation that return types with arguments of type BindingSet
 CloseableIteration<BindingSet,QueryEvaluationException> RdbmsEvaluation.evaluate(TupleExpr expr, BindingSet bindings)
           
 

Methods in org.openrdf.sail.rdbms.evaluation with parameters of type BindingSet
 CloseableIteration<BindingSet,QueryEvaluationException> RdbmsEvaluation.evaluate(TupleExpr expr, BindingSet bindings)
           
 

Uses of BindingSet in org.openrdf.sail.rdbms.iteration
 

Methods in org.openrdf.sail.rdbms.iteration that return BindingSet
protected  BindingSet RdbmsBindingIteration.convert(ResultSet rs)
           
 

Methods in org.openrdf.sail.rdbms.iteration with parameters of type BindingSet
 void RdbmsBindingIteration.setBindings(BindingSet bindings)
           
 

Uses of BindingSet in org.openrdf.sail.rdbms.optimizers
 

Methods in org.openrdf.sail.rdbms.optimizers with parameters of type BindingSet
 void SqlConstantOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void VarColumnLookupOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void ValueIdLookupOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void ValueJoinOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void SelectQueryOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 TupleExpr RdbmsQueryOptimizer.optimize(TupleExpr expr, Dataset dataset, BindingSet bindings, EvaluationStrategy strategy)
           
protected  void RdbmsQueryOptimizer.rdbmsOptimizations(TupleExpr expr, Dataset dataset, BindingSet bindings)
           
 

Uses of BindingSet in org.openrdf.sail.rdbms.postgresql
 

Methods in org.openrdf.sail.rdbms.postgresql with parameters of type BindingSet
 void PgSqlRegexFlagsInliner.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
protected  void PgSqlQueryOptimizer.rdbmsOptimizations(TupleExpr expr, Dataset dataset, BindingSet bindings)
           
 



Copyright © 2001-2012 Aduna. All Rights Reserved.