Uses of Interface
org.openrdf.query.BindingSet

Packages that use BindingSet
org.openrdf.http.webclient.repository.query   
org.openrdf.query Interfaces and classes for handling queries and query results. 
org.openrdf.query.algebra.evaluation   
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.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.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.http.webclient.repository.query
 

Methods in org.openrdf.http.webclient.repository.query with parameters of type BindingSet
static List<Binding> QueryResultFunctions.bindingsInOrder(List<String> bindingNames, BindingSet bindingSet)
           
 

Uses of BindingSet in org.openrdf.query
 

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

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.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.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(BinaryTupleOperator expr, 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(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(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)
           
 

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(BinaryTupleOperator expr, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(BNodeGenerator node, BindingSet bindings)
           
 Value EvaluationStrategyImpl.evaluate(Bound 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(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(In node, BindingSet bindings)
           
 CloseableIteration<BindingSet,QueryEvaluationException> EvaluationStrategyImpl.evaluate(Intersection intersection, BindingSet bindings)
           
 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(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)
           
 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(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)
           
 boolean EvaluationStrategyImpl.isTrue(ValueExpr expr, BindingSet bindings)
           
 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)
          Applies generally applicable optimizations: path expressions are sorted from more to less specific.
 void QueryJoinOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
          Applies generally applicable optimizations: path expressions are sorted from more to less specific.
 void FilterOptimizer.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
 

Methods in org.openrdf.query.algebra.evaluation.iterator that return BindingSet
protected  BindingSet ProjectionIterator.convert(BindingSet sourceBindings)
           
 BindingSet ExtensionIterator.convert(BindingSet sourceBindings)
           
protected  BindingSet LeftJoinIterator.getNextElement()
           
protected  BindingSet JoinIterator.getNextElement()
           
 BindingSet GroupIterator.Entry.getPrototype()
           
 BindingSet OrderIterator.next()
           
 BindingSet MultiProjectionIterator.next()
           
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
 Set<BindingSet> GroupIterator.Entry.getSolutions()
           
 

Methods in org.openrdf.query.algebra.evaluation.iterator with parameters of type BindingSet
protected  boolean FilterIterator.accept(BindingSet bindings)
           
protected  boolean CompatibleBindingSetFilter.accept(BindingSet outputBindings)
           
 void GroupIterator.Entry.addSolution(BindingSet bindingSet)
           
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
CompatibleBindingSetFilter(CloseableIteration<BindingSet,QueryEvaluationException> iter, BindingSet inputBindings)
           
GroupIterator.Entry(BindingSet prototype)
           
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)
           
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)
           
ProjectionIterator(Projection projection, CloseableIteration<BindingSet,QueryEvaluationException> iter, BindingSet parentBindings)
           
 

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 AbstractQuery.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.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.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.
 

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)
           
 

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 VarColumnLookupOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void ValueJoinOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void ValueIdLookupOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 void SqlConstantOptimizer.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)
           
 

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)
           
 



Copyright © 2001-2008 Aduna. All Rights Reserved.