|
||||||||||
| 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,
FileManager fm)
Deprecated. |
static QueryExecution |
create(Query query,
Model model)
Create a QueryExecution to execute over the Model. |
static QueryExecution |
create(Query query,
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,
FileManager fm)
Create a QueryExecution : the file manager will be used to load URIs in the query decription. |
static QueryExecution |
create(String queryStr,
Model model)
Create a QueryExecution to execute over the Model. |
static QueryExecution |
create(String queryStr,
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,
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,
Model model)
Create a QueryExecution to execute over the Model. |
static QueryExecution |
create(String queryStr,
Syntax syntax,
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(Query query,
DatasetGraph dataset,
Binding input)
|
static Plan |
createPlan(Query query,
DatasetGraph dataset,
Binding input,
Context context)
|
static QueryEngineHTTP |
createServiceRequest(String service,
Query query)
Create a service request for remote execution over HTTP. |
static QueryEngineHTTP |
createServiceRequest(String service,
Query query,
HttpAuthenticator authenticator)
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,
HttpAuthenticator authenticator)
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,
List<String> defaultGraphURIs,
List<String> namedGraphURIs,
HttpAuthenticator authenticator)
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,
Query query,
String defaultGraph,
HttpAuthenticator authenticator)
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,
HttpAuthenticator authenticator)
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,
List<String> defaultGraphURIs,
List<String> namedGraphURIs,
HttpAuthenticator authenticator)
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 |
static QueryExecution |
sparqlService(String service,
String query,
String defaultGraph,
HttpAuthenticator authenticator)
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
@Deprecated
public static QueryExecution create(Query query,
FileManager fm)
query - Queryfm - FileManager
public static QueryExecution create(String queryStr,
FileManager fm)
queryStr - Query stringfm - FileManager
public static QueryExecution create(String queryStr,
Syntax syntax,
FileManager fm)
queryStr - Query stringsyntax - Syntaxfm - FileManager
public static QueryExecution create(Query query,
Model model)
query - Querymodel - Target of the query
public static QueryExecution create(String queryStr,
Model model)
queryStr - Query stringmodel - Target of the query
public static QueryExecution create(String queryStr,
Syntax lang,
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,
Model model,
QuerySolution initialBinding)
query - Querymodel - Target of the queryinitialBinding - Any initial binding of variables
public static QueryExecution create(String queryStr,
Model model,
QuerySolution initialBinding)
queryStr - Query stringmodel - Target of the queryinitialBinding - Any initial binding of variables
public static QueryExecution create(String queryStr,
Syntax syntax,
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,
HttpAuthenticator authenticator)
service - URL of the remote servicequery - Query string to executeauthenticator - HTTP Authenticator
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,
String defaultGraph,
HttpAuthenticator authenticator)
service - URL of the remote servicequery - Query string to executedefaultGraph - URI of the default graphauthenticator - HTTP Authenticator
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,
String query,
List<String> defaultGraphURIs,
List<String> namedGraphURIs,
HttpAuthenticator authenticator)
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 graphsauthenticator - HTTP Authenticator
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,
HttpAuthenticator authenticator)
service - URL of the remote servicequery - Query to executeauthenticator - HTTP Authenticator
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,
List<String> defaultGraphURIs,
List<String> namedGraphURIs,
HttpAuthenticator authenticator)
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 graphsauthenticator - HTTP Authenticator
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 QueryExecution sparqlService(String service,
Query query,
String defaultGraph,
HttpAuthenticator authenticator)
service - URL of the remote servicequery - Query to executedefaultGraph - URI of the default graphauthenticator - HTTP Authenticator
public static QueryEngineHTTP createServiceRequest(String service,
Query query)
QueryEngineHTTP,
allows various HTTP specific parameters to be set.
service - Endpoint URLquery - Query
public static QueryEngineHTTP createServiceRequest(String service,
Query query,
HttpAuthenticator authenticator)
QueryEngineHTTP,
allows various HTTP specific parameters to be set.
service - Endpoint URLquery - Queryauthenticator - HTTP Authenticator
public static Plan createPlan(Query query,
DatasetGraph dataset,
Binding input,
Context context)
public static Plan createPlan(Query query,
DatasetGraph dataset,
Binding input)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||