Uses of Interface
org.openrdf.query.Dataset

Packages that use Dataset
org.openrdf.http.client   
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.util   
org.openrdf.query.impl   
org.openrdf.query.parser   
org.openrdf.query.parser.sparql The SPARQL query engine. 
org.openrdf.repository.sail Repository implementation for local storage backends. 
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.optimizers   
org.openrdf.sail.rdbms.postgresql   
 

Uses of Dataset in org.openrdf.http.client
 

Methods in org.openrdf.http.client with parameters of type Dataset
protected  org.apache.commons.httpclient.HttpMethod HTTPClient.getQueryMethod(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, Binding... bindings)
           
protected  List<org.apache.commons.httpclient.NameValuePair> HTTPClient.getQueryMethodParameters(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, Binding... bindings)
           
 boolean HTTPClient.sendBooleanQuery(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, Binding... bindings)
           
 GraphQueryResult HTTPClient.sendGraphQuery(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, Binding... bindings)
           
 void HTTPClient.sendGraphQuery(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, RDFHandler handler, Binding... bindings)
           
 TupleQueryResult HTTPClient.sendTupleQuery(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, Binding... bindings)
           
 void HTTPClient.sendTupleQuery(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, TupleQueryResultHandler handler, Binding... bindings)
           
 

Uses of Dataset in org.openrdf.query
 

Methods in org.openrdf.query that return Dataset
 Dataset Query.getDataset()
          Gets the dataset that has been set using Query.setDataset(Dataset), if any.
 

Methods in org.openrdf.query with parameters of type Dataset
 void Query.setDataset(Dataset dataset)
          Specifies the dataset against which to evaluate a query, overriding any dataset that is specified in the query itself.
 

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

Methods in org.openrdf.query.algebra.evaluation with parameters of type Dataset
 void QueryOptimizer.optimize(TupleExpr tupleExpr, Dataset dataset, BindingSet bindings)
           
 

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

Methods in org.openrdf.query.algebra.evaluation.impl with parameters of type Dataset
 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 Dataset
EvaluationStrategyImpl(TripleSource tripleSource, Dataset dataset)
           
 

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

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

Uses of Dataset in org.openrdf.query.impl
 

Classes in org.openrdf.query.impl that implement Dataset
 class DatasetImpl
           
 

Fields in org.openrdf.query.impl declared as Dataset
protected  Dataset AbstractQuery.dataset
           
 

Methods in org.openrdf.query.impl that return Dataset
 Dataset AbstractQuery.getDataset()
           
 

Methods in org.openrdf.query.impl with parameters of type Dataset
 void AbstractQuery.setDataset(Dataset dataset)
           
 

Uses of Dataset in org.openrdf.query.parser
 

Methods in org.openrdf.query.parser that return Dataset
 Dataset ParsedQuery.getDataset()
           
 

Methods in org.openrdf.query.parser with parameters of type Dataset
 void ParsedQuery.setDataset(Dataset dataset)
           
 

Constructors in org.openrdf.query.parser with parameters of type Dataset
ParsedQuery(TupleExpr tupleExpr, Dataset dataset)
          Creates a new query object.
 

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

Methods in org.openrdf.query.parser.sparql that return Dataset
static Dataset DatasetDeclProcessor.process(ASTQueryContainer qc)
          Extracts a SPARQL #Dataset from an ASTQueryContainer, if one is contained.
 

Uses of Dataset in org.openrdf.repository.sail
 

Methods in org.openrdf.repository.sail that return Dataset
 Dataset SailQuery.getActiveDataset()
          Gets the "active" dataset for this query.
 

Uses of Dataset in org.openrdf.sail
 

Methods in org.openrdf.sail with parameters of type Dataset
 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 Dataset in org.openrdf.sail.helpers
 

Methods in org.openrdf.sail.helpers with parameters of type Dataset
 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 Dataset in org.openrdf.sail.inferencer
 

Methods in org.openrdf.sail.inferencer with parameters of type Dataset
 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 Dataset in org.openrdf.sail.memory
 

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

Uses of Dataset in org.openrdf.sail.nativerdf
 

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

Uses of Dataset in org.openrdf.sail.rdbms
 

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

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

Methods in org.openrdf.sail.rdbms.evaluation with parameters of type Dataset
 RdbmsEvaluation RdbmsEvaluationFactory.createRdbmsEvaluation(Dataset dataset)
           
 

Constructors in org.openrdf.sail.rdbms.evaluation with parameters of type Dataset
RdbmsEvaluation(QueryBuilderFactory factory, RdbmsTripleRepository triples, Dataset dataset, IdSequence ids)
           
 

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

Methods in org.openrdf.sail.rdbms.optimizers with parameters of type Dataset
 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 Dataset in org.openrdf.sail.rdbms.postgresql
 

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



Copyright © 2001-2008 Aduna. All Rights Reserved.