|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.hp.hpl.jena.query.QueryExecutionFactory
public class QueryExecutionFactory
Place to make QueryExecution objects from Query objects or a string.
Method Summary | |
---|---|
static QueryExecution |
create(Query query)
Create a QueryExecution |
static QueryExecution |
create(Query query,
Dataset dataset)
Create a QueryExecution to execute over the Dataset. |
static QueryExecution |
create(Query query,
Dataset dataset,
QuerySolution initialBinding)
Create a QueryExecution over a Dataset given some initial values of variables. |
static QueryExecution |
create(Query query,
com.hp.hpl.jena.util.FileManager fm)
Create a QueryExecution : the file manager will be used to load URIs in the query decription. |
static QueryExecution |
create(Query query,
com.hp.hpl.jena.rdf.model.Model model)
Create a QueryExecution to execute over the Model. |
static QueryExecution |
create(Query query,
com.hp.hpl.jena.rdf.model.Model model,
QuerySolution initialBinding)
Create a QueryExecution to execute over the Model, given some initial values of variables. |
static QueryExecution |
create(Query query,
QuerySolution initialBinding)
Create a QueryExecution to execute over the Model. |
static QueryExecution |
create(String queryStr)
Create a QueryExecution |
static QueryExecution |
create(String queryStr,
Dataset dataset)
Create a QueryExecution to execute over the Dataset. |
static QueryExecution |
create(String queryStr,
Dataset dataset,
QuerySolution initialBinding)
Create a QueryExecution over a Dataset given some initial values of variables. |
static QueryExecution |
create(String queryStr,
com.hp.hpl.jena.util.FileManager fm)
Create a QueryExecution : the file manager will be used to load URIs in the query decription. |
static QueryExecution |
create(String queryStr,
com.hp.hpl.jena.rdf.model.Model model)
Create a QueryExecution to execute over the Model. |
static QueryExecution |
create(String queryStr,
com.hp.hpl.jena.rdf.model.Model model,
QuerySolution initialBinding)
Create a QueryExecution to execute over the Model, given some initial values of variables. |
static QueryExecution |
create(String queryStr,
QuerySolution initialBinding)
Create a QueryExecution given some initial values of variables. |
static QueryExecution |
create(String queryStr,
Syntax syntax)
Create a QueryExecution |
static QueryExecution |
create(String queryStr,
Syntax syntax,
Dataset dataset)
Create a QueryExecution to execute over the Dataset. |
static QueryExecution |
create(String queryStr,
Syntax syntax,
Dataset dataset,
QuerySolution initialBinding)
Create a QueryExecution over a Dataset given some initial values of variables. |
static QueryExecution |
create(String queryStr,
Syntax syntax,
com.hp.hpl.jena.util.FileManager fm)
Create a QueryExecution : the file manager will be used to load URIs in the query decription. |
static QueryExecution |
create(String queryStr,
Syntax lang,
com.hp.hpl.jena.rdf.model.Model model)
Create a QueryExecution to execute over the Model. |
static QueryExecution |
create(String queryStr,
Syntax syntax,
com.hp.hpl.jena.rdf.model.Model model,
QuerySolution initialBinding)
Create a QueryExecution to execute over the Model, given some initial values of variables. |
static QueryExecution |
create(String queryStr,
Syntax syntax,
QuerySolution initialBinding)
Create a QueryExecution given some initial values of variables. |
static Plan |
createPlan(Element pattern,
DatasetGraph dataset)
|
static Plan |
createPlan(Element pattern,
DatasetGraph dataset,
Binding input)
|
static Plan |
createPlan(Element pattern,
com.hp.hpl.jena.graph.Graph graph)
|
static Plan |
createPlan(Query query,
DatasetGraph dataset)
|
static Plan |
createPlan(Query query,
DatasetGraph dataset,
Binding input)
|
static Plan |
createPlan(Query query,
DatasetGraph dataset,
Binding input,
Context context)
|
static Plan |
createPlan(Query query,
com.hp.hpl.jena.graph.Graph graph)
|
static Plan |
createPlan(String queryStr,
DatasetGraph dataset)
|
static Plan |
createPlan(String queryStr,
com.hp.hpl.jena.graph.Graph graph)
|
static QueryEngineHTTP |
createServiceRequest(String service,
Query query)
Create a service request for remote execution over HTTP. |
static QueryExecution |
sparqlService(String service,
Query query)
Create a QueryExecution that will access a SPARQL service over HTTP |
static QueryExecution |
sparqlService(String service,
Query query,
List<String> defaultGraphURIs,
List<String> namedGraphURIs)
Create a QueryExecution that will access a SPARQL service over HTTP |
static QueryExecution |
sparqlService(String service,
Query query,
String defaultGraph)
Create a QueryExecution that will access a SPARQL service over HTTP |
static QueryExecution |
sparqlService(String service,
String query)
Create a QueryExecution that will access a SPARQL service over HTTP |
static QueryExecution |
sparqlService(String service,
String query,
List<String> defaultGraphURIs,
List<String> namedGraphURIs)
Create a QueryExecution that will access a SPARQL service over HTTP |
static QueryExecution |
sparqlService(String service,
String query,
String defaultGraph)
Create a QueryExecution that will access a SPARQL service over HTTP |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static QueryExecution create(Query query)
query
- Query
public static QueryExecution create(String queryStr)
queryStr
- Query string
public static QueryExecution create(String queryStr, Syntax syntax)
queryStr
- Query stringsyntax
- Query syntax
public static QueryExecution create(Query query, Dataset dataset)
query
- Querydataset
- Target of the query
public static QueryExecution create(String queryStr, Dataset dataset)
queryStr
- Query stringdataset
- Target of the query
public static QueryExecution create(String queryStr, Syntax syntax, Dataset dataset)
queryStr
- Query stringsyntax
- Query languagedataset
- Target of the query
public static QueryExecution create(Query query, com.hp.hpl.jena.util.FileManager fm)
query
- Queryfm
- FileManager
public static QueryExecution create(String queryStr, com.hp.hpl.jena.util.FileManager fm)
queryStr
- Query stringfm
- FileManager
public static QueryExecution create(String queryStr, Syntax syntax, com.hp.hpl.jena.util.FileManager fm)
queryStr
- Query stringsyntax
- Syntaxfm
- FileManager
public static QueryExecution create(Query query, com.hp.hpl.jena.rdf.model.Model model)
query
- Querymodel
- Target of the query
public static QueryExecution create(String queryStr, com.hp.hpl.jena.rdf.model.Model model)
queryStr
- Query stringmodel
- Target of the query
public static QueryExecution create(String queryStr, Syntax lang, com.hp.hpl.jena.rdf.model.Model model)
queryStr
- Query stringlang
- Query languagemodel
- Target of the query
public static QueryExecution create(Query query, QuerySolution initialBinding)
query
- Query stringinitialBinding
- Any initial binding of variables
public static QueryExecution create(String queryStr, QuerySolution initialBinding)
queryStr
- QueryStringinitialBinding
- Any initial binding of variables
public static QueryExecution create(String queryStr, Syntax syntax, QuerySolution initialBinding)
queryStr
- QueryStringsyntax
- Query language syntaxinitialBinding
- Any initial binding of variables
public static QueryExecution create(Query query, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
query
- Querymodel
- Target of the queryinitialBinding
- Any initial binding of variables
public static QueryExecution create(String queryStr, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
queryStr
- Query stringmodel
- Target of the queryinitialBinding
- Any initial binding of variables
public static QueryExecution create(String queryStr, Syntax syntax, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
queryStr
- Query stringsyntax
- Query languagemodel
- Target of the queryinitialBinding
- Any initial binding of variables
public static QueryExecution create(Query query, Dataset dataset, QuerySolution initialBinding)
query
- Querydataset
- Target of the queryinitialBinding
- Any initial binding of variables
public static QueryExecution create(String queryStr, Dataset dataset, QuerySolution initialBinding)
queryStr
- Query stringdataset
- Target of the queryinitialBinding
- Any initial binding of variables
public static QueryExecution create(String queryStr, Syntax syntax, Dataset dataset, QuerySolution initialBinding)
queryStr
- Query stringdataset
- Target of the queryinitialBinding
- Any initial binding of variables
public static QueryExecution sparqlService(String service, String query)
service
- URL of the remote servicequery
- Query string to execute
public static QueryExecution sparqlService(String service, String query, String defaultGraph)
service
- URL of the remote servicequery
- Query string to executedefaultGraph
- URI of the default graph
public static QueryExecution sparqlService(String service, String query, List<String> defaultGraphURIs, List<String> namedGraphURIs)
service
- URL of the remote servicequery
- Query string to executedefaultGraphURIs
- List of URIs to make up the default graphnamedGraphURIs
- List of URIs to make up the named graphs
public static QueryExecution sparqlService(String service, Query query)
service
- URL of the remote servicequery
- Query to execute
public static QueryExecution sparqlService(String service, Query query, List<String> defaultGraphURIs, List<String> namedGraphURIs)
service
- URL of the remote servicequery
- Query to executedefaultGraphURIs
- List of URIs to make up the default graphnamedGraphURIs
- List of URIs to make up the named graphs
public static QueryExecution sparqlService(String service, Query query, String defaultGraph)
service
- URL of the remote servicequery
- Query to executedefaultGraph
- URI of the default graph
public static QueryEngineHTTP createServiceRequest(String service, Query query)
QueryEngineHTTP
,
allows various HTTP specific paramters to be set.
public static Plan createPlan(Query query, DatasetGraph dataset, Binding input, Context context)
public static Plan createPlan(String queryStr, com.hp.hpl.jena.graph.Graph graph)
public static Plan createPlan(String queryStr, DatasetGraph dataset)
public static Plan createPlan(Query query, com.hp.hpl.jena.graph.Graph graph)
public static Plan createPlan(Query query, DatasetGraph dataset)
public static Plan createPlan(Query query, DatasetGraph dataset, Binding input)
public static Plan createPlan(Element pattern, com.hp.hpl.jena.graph.Graph graph)
public static Plan createPlan(Element pattern, DatasetGraph dataset)
public static Plan createPlan(Element pattern, DatasetGraph dataset, Binding input)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |