Modifier and Type | Method and Description |
---|---|
protected void |
TupleAndGraphQueryEvaluator.evaluateGraphQuery(QueryLanguage queryLn,
String queryString) |
protected void |
TupleAndGraphQueryEvaluator.evaluateTupleQuery(QueryLanguage queryLn,
String queryString) |
Modifier and Type | Method and Description |
---|---|
protected BackgroundTupleResult |
HTTPClient.getBackgroundTupleQueryResult(org.apache.commons.httpclient.HttpMethod method)
Parse the response in a background thread.
|
protected boolean |
HTTPClient.getBoolean(org.apache.commons.httpclient.HttpMethodBase method)
Parse the response in this thread using a suitable
BooleanQueryResultParser . |
protected void |
HTTPClient.getRDF(org.apache.commons.httpclient.HttpMethod method,
RDFHandler handler,
boolean requireContext)
Parse the response in this thread using the provided
RDFHandler . |
protected BackgroundGraphResult |
HTTPClient.getRDFBackground(org.apache.commons.httpclient.HttpMethodBase method,
boolean requireContext)
Parse the response in a background thread.
|
protected void |
HTTPClient.getTupleQueryResult(org.apache.commons.httpclient.HttpMethod method,
TupleQueryResultHandler handler)
Parse the response in this thread using the provided
TupleQueryResultHandler . |
boolean |
HTTPClient.sendBooleanQuery(QueryLanguage ql,
String query,
Dataset dataset,
boolean includeInferred,
Binding... bindings) |
boolean |
HTTPClient.sendBooleanQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
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) |
GraphQueryResult |
HTTPClient.sendGraphQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
Binding... bindings) |
void |
HTTPClient.sendGraphQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
RDFHandler handler,
Binding... bindings) |
TupleQueryResult |
HTTPClient.sendTupleQuery(QueryLanguage ql,
String query,
Dataset dataset,
boolean includeInferred,
Binding... bindings) |
TupleQueryResult |
HTTPClient.sendTupleQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
Binding... bindings) |
void |
HTTPClient.sendTupleQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
TupleQueryResultHandler handler,
Binding... bindings) |
void |
HTTPClient.sendUpdate(QueryLanguage ql,
String update,
String baseURI,
Dataset dataset,
boolean includeInferred,
Binding... bindings) |
Modifier and Type | Class and Description |
---|---|
class |
IncompatibleOperationException
An exception indicating that a string could not be parsed into an operation
of the expected type by the parser.
|
Modifier and Type | Method and Description |
---|---|
static ParsedBooleanQuery |
QueryParserUtil.parseBooleanQuery(QueryLanguage ql,
String query,
String baseURI)
Parses the supplied query into a query model.
|
static ParsedGraphQuery |
QueryParserUtil.parseGraphQuery(QueryLanguage ql,
String query,
String baseURI)
Parses the supplied query into a query model.
|
static ParsedOperation |
QueryParserUtil.parseOperation(QueryLanguage ql,
String operation,
String baseURI)
Parses the supplied operation into a query model.
|
static ParsedQuery |
QueryParserUtil.parseQuery(QueryLanguage ql,
String query,
String baseURI)
Parses the supplied query into a query model.
|
ParsedQuery |
QueryParser.parseQuery(String queryStr,
String baseURI) |
static ParsedTupleQuery |
QueryParserUtil.parseTupleQuery(QueryLanguage ql,
String query,
String baseURI)
Parses the supplied query into a query model.
|
static ParsedUpdate |
QueryParserUtil.parseUpdate(QueryLanguage ql,
String update,
String baseURI)
Parses the supplied update operation into a query model.
|
ParsedUpdate |
QueryParser.parseUpdate(String updateStr,
String baseURI) |
Modifier and Type | Method and Description |
---|---|
ParsedQuery |
SeRQLParser.parseQuery(String queryStr,
String baseURI) |
ParsedUpdate |
SeRQLParser.parseUpdate(String updateStr,
String baseURI) |
Modifier and Type | Method and Description |
---|---|
TupleExpr |
ConstructorBuilder.buildConstructor(TupleExpr bodyExpr,
boolean distinct,
boolean reduced) |
ParsedQuery |
SPARQLParser.parseQuery(String queryStr,
String baseURI) |
ParsedUpdate |
SPARQLParser.parseUpdate(String updateStr,
String baseURI) |
static Set<String> |
BlankNodeVarProcessor.process(ASTOperationContainer qc) |
static Map<String,String> |
PrefixDeclProcessor.process(ASTOperationContainer qc)
Processes prefix declarations in queries.
|
static void |
StringEscapesProcessor.process(ASTOperationContainer qc)
Processes escape sequences in ASTString objects.
|
static Dataset |
DatasetDeclProcessor.process(ASTOperationContainer qc)
Extracts a SPARQL
Dataset from an ASTQueryContainer, if one is
contained. |
static void |
BaseDeclProcessor.process(ASTOperationContainer qc,
String externalBaseURI)
Resolves relative URIs in the supplied query model using either the
specified externalBaseURI or, if this parameter is null,
the base URI specified in the query model itself.
|
static void |
WildcardProjectionProcessor.process(ASTQueryContainer qc) |
Modifier and Type | Method and Description |
---|---|
BooleanQuery |
RepositoryConnection.prepareBooleanQuery(QueryLanguage ql,
String query)
Prepares true/false queries.
|
BooleanQuery |
RepositoryConnection.prepareBooleanQuery(QueryLanguage ql,
String query,
String baseURI)
Prepares true/false queries.
|
GraphQuery |
RepositoryConnection.prepareGraphQuery(QueryLanguage ql,
String query)
Prepares queries that produce RDF graphs.
|
GraphQuery |
RepositoryConnection.prepareGraphQuery(QueryLanguage ql,
String query,
String baseURI)
Prepares queries that produce RDF graphs.
|
Query |
RepositoryConnection.prepareQuery(QueryLanguage ql,
String query)
Prepares a query for evaluation on this repository (optional operation).
|
Query |
RepositoryConnection.prepareQuery(QueryLanguage ql,
String query,
String baseURI)
Prepares a query for evaluation on this repository (optional operation).
|
TupleQuery |
RepositoryConnection.prepareTupleQuery(QueryLanguage ql,
String query)
Prepares a query that produces sets of value tuples.
|
TupleQuery |
RepositoryConnection.prepareTupleQuery(QueryLanguage ql,
String query,
String baseURI)
Prepares a query that produces sets of value tuples.
|
Update |
RepositoryConnection.prepareUpdate(QueryLanguage ql,
String update)
Prepares an Update operation.
|
Update |
RepositoryConnection.prepareUpdate(QueryLanguage ql,
String update,
String baseURI)
Prepares an Update operation.
|
Modifier and Type | Method and Description |
---|---|
BooleanQuery |
RepositoryConnectionBase.prepareBooleanQuery(QueryLanguage ql,
String query) |
BooleanQuery |
RepositoryConnectionWrapper.prepareBooleanQuery(QueryLanguage ql,
String query,
String baseURI) |
GraphQuery |
RepositoryConnectionBase.prepareGraphQuery(QueryLanguage ql,
String query) |
GraphQuery |
RepositoryConnectionWrapper.prepareGraphQuery(QueryLanguage ql,
String query,
String baseURI) |
Query |
RepositoryConnectionBase.prepareQuery(QueryLanguage ql,
String query) |
Query |
RepositoryConnectionWrapper.prepareQuery(QueryLanguage ql,
String query,
String baseURI) |
TupleQuery |
RepositoryConnectionBase.prepareTupleQuery(QueryLanguage ql,
String query) |
TupleQuery |
RepositoryConnectionWrapper.prepareTupleQuery(QueryLanguage ql,
String query,
String baseURI) |
Update |
RepositoryConnectionBase.prepareUpdate(QueryLanguage ql,
String update) |
Update |
RepositoryConnectionWrapper.prepareUpdate(QueryLanguage ql,
String update,
String baseURI) |
Modifier and Type | Method and Description |
---|---|
BooleanQuery |
DatasetRepositoryConnection.prepareBooleanQuery(QueryLanguage ql,
String query,
String baseURI) |
GraphQuery |
DatasetRepositoryConnection.prepareGraphQuery(QueryLanguage ql,
String query,
String baseURI) |
Query |
DatasetRepositoryConnection.prepareQuery(QueryLanguage ql,
String query,
String baseURI) |
TupleQuery |
DatasetRepositoryConnection.prepareTupleQuery(QueryLanguage ql,
String query,
String baseURI) |
Modifier and Type | Method and Description |
---|---|
Update |
InterceptingRepositoryConnectionWrapper.prepareUpdate(QueryLanguage ql,
String update,
String baseURI) |
Update |
NotifyingRepositoryConnectionWrapper.prepareUpdate(QueryLanguage ql,
String update,
String baseURI) |
Modifier and Type | Method and Description |
---|---|
MalformedQueryException |
HTTPUpdateExecutionException.getCauseAsMalformedQueryException() |
MalformedQueryException |
HTTPQueryEvaluationException.getCauseAsMalformedQueryException() |
Modifier and Type | Method and Description |
---|---|
SailBooleanQuery |
SailRepositoryConnection.prepareBooleanQuery(QueryLanguage ql,
String queryString,
String baseURI) |
SailGraphQuery |
SailRepositoryConnection.prepareGraphQuery(QueryLanguage ql,
String queryString,
String baseURI) |
SailQuery |
SailRepositoryConnection.prepareQuery(QueryLanguage ql,
String queryString,
String baseURI) |
SailTupleQuery |
SailRepositoryConnection.prepareTupleQuery(QueryLanguage ql,
String queryString,
String baseURI) |
Update |
SailRepositoryConnection.prepareUpdate(QueryLanguage ql,
String update,
String baseURI) |
Modifier and Type | Method and Description |
---|---|
BooleanQuery |
SPARQLConnection.prepareBooleanQuery(QueryLanguage ql,
String query,
String base) |
GraphQuery |
SPARQLConnection.prepareGraphQuery(QueryLanguage ql,
String query,
String base) |
Query |
SPARQLConnection.prepareQuery(QueryLanguage ql,
String query,
String base) |
TupleQuery |
SPARQLConnection.prepareTupleQuery(QueryLanguage ql,
String query,
String base) |
Update |
SPARQLConnection.prepareUpdate(QueryLanguage ql,
String update,
String baseURI) |
Modifier and Type | Method and Description |
---|---|
void |
OwnedTupleExpr.prepare(QueryLanguage queryLn,
String qry,
Map<String,String> bindings) |
Modifier and Type | Method and Description |
---|---|
void |
CustomGraphQueryInferencer.setFields(QueryLanguage language,
String queryText,
String matcherText)
Called in order to set all the fields needed for the inferencer to
function.
|
Constructor and Description |
---|
CustomGraphQueryInferencer(NotifyingSail baseSail,
QueryLanguage language,
String queryText,
String matcherText)
Create a new custom inferencer.
|
CustomGraphQueryInferencer(QueryLanguage language,
String queryText,
String matcherText)
Create a new custom inferencer.
|
Modifier and Type | Method and Description |
---|---|
void |
SummaryServlet.service(TupleResultBuilder builder,
String xslPath) |
Modifier and Type | Method and Description |
---|---|
boolean |
QueryStorage.askExists(HTTPRepository repository,
String queryName,
String userName) |
boolean |
QueryStorage.canChange(URI query,
String currentUser)
Determines whether the user with the given userName is allowed to update
or delete the given query.
|
boolean |
QueryStorage.canRead(URI query,
String currentUser)
Determines whether the user with the given userName is allowed to read the
given query.
|
void |
QueryStorage.deleteQuery(URI query,
String userName)
Delete the given query for the given user.
|
void |
QueryStorage.selectSavedQueries(HTTPRepository repository,
String userName,
TupleResultBuilder builder)
Prepares a query to retrieve the queries accessible to the given user in
the given repository.
|
void |
QueryStorage.updateQuery(URI query,
String userName,
boolean shared,
QueryLanguage queryLanguage,
String queryText,
boolean infer,
int rowsPerPage)
Update the entry for the given query.
|
Copyright © 2001-2013 Aduna. All Rights Reserved.