Package | Description |
---|---|
org.openrdf.console |
A command line console tool for communicating with local Sesame repositories.
|
org.openrdf.http.client | |
org.openrdf.query |
Interfaces and classes for handling queries and query results.
|
org.openrdf.query.parser | |
org.openrdf.query.parser.serql |
The SeRQL query engine.
|
org.openrdf.query.parser.sparql |
The SPARQL query engine.
|
org.openrdf.query.parser.sparql.manifest | |
org.openrdf.repository |
The Repository API: the main API for handling Sesame repositories.
|
org.openrdf.repository.base | |
org.openrdf.repository.contextaware |
A repository wrapper with convenience functions for handling contexts.
|
org.openrdf.repository.dataset |
A repository wrapper which supports auto-loading of datasets specified in a query
|
org.openrdf.repository.event.base | |
org.openrdf.repository.http |
A repository that serves as a proxy client for a remote
repository on a Sesame Server.
|
org.openrdf.repository.sail |
Repository implementation for local RDF databases that
implement the SAIL API.
|
org.openrdf.repository.sparql |
A repository that serves as a client for a SPARQL endpoint.
|
org.openrdf.sail |
RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an API
for RDF repositories.
|
org.openrdf.sail.elasticsearch | |
org.openrdf.sail.federation.algebra | |
org.openrdf.sail.inferencer.fc |
Forward-chaining inferencers, implemented as StackableSails.
|
org.openrdf.sail.inferencer.fc.config | |
org.openrdf.sail.lucene | |
org.openrdf.sail.lucene3 | |
org.openrdf.sail.lucene4 | |
org.openrdf.sail.solr | |
org.openrdf.workbench.commands | |
org.openrdf.workbench.util |
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 |
SparqlSession.getBackgroundTupleQueryResult(org.apache.http.client.methods.HttpUriRequest method)
Parse the response in a background thread.
|
protected void |
SparqlSession.getRDF(org.apache.http.client.methods.HttpUriRequest method,
RDFHandler handler,
boolean requireContext)
Parse the response in this thread using the provided
RDFHandler . |
protected BackgroundGraphResult |
SparqlSession.getRDFBackground(org.apache.http.client.methods.HttpUriRequest method,
boolean requireContext)
Parse the response in a background thread.
|
protected void |
SparqlSession.getTupleQueryResult(org.apache.http.client.methods.HttpUriRequest method,
TupleQueryResultHandler handler)
Parse the response in this thread using the provided
TupleQueryResultHandler . |
boolean |
SparqlSession.sendBooleanQuery(QueryLanguage ql,
String query,
Dataset dataset,
boolean includeInferred,
Binding... bindings) |
boolean |
SparqlSession.sendBooleanQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
Binding... bindings) |
GraphQueryResult |
SparqlSession.sendGraphQuery(QueryLanguage ql,
String query,
Dataset dataset,
boolean includeInferred,
Binding... bindings) |
void |
SparqlSession.sendGraphQuery(QueryLanguage ql,
String query,
Dataset dataset,
boolean includeInferred,
RDFHandler handler,
Binding... bindings) |
GraphQueryResult |
SparqlSession.sendGraphQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
Binding... bindings) |
void |
SparqlSession.sendGraphQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
RDFHandler handler,
Binding... bindings) |
TupleQueryResult |
SparqlSession.sendTupleQuery(QueryLanguage ql,
String query,
Dataset dataset,
boolean includeInferred,
Binding... bindings) |
TupleQueryResult |
SparqlSession.sendTupleQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
Binding... bindings) |
void |
SparqlSession.sendTupleQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
TupleQueryResultHandler handler,
Binding... bindings) |
void |
SparqlSession.sendUpdate(QueryLanguage ql,
String update,
String baseURI,
Dataset dataset,
boolean includeInferred,
Binding... bindings) |
void |
SparqlSession.sendUpdate(QueryLanguage ql,
String update,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
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 void |
StringEscapesProcessor.process(ASTOperationContainer qc)
Processes escape sequences in ASTString objects.
|
static Map<String,String> |
PrefixDeclProcessor.process(ASTOperationContainer qc)
Processes prefix declarations in queries.
|
static Dataset |
DatasetDeclProcessor.process(ASTOperationContainer qc)
Extracts a SPARQL
Dataset from an ASTQueryContainer, if one is
contained. |
static Set<String> |
BlankNodeVarProcessor.process(ASTOperationContainer qc) |
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 |
---|---|
protected static String |
SPARQLUpdateConformanceTest.getManifestName(Repository manifestRep,
RepositoryConnection con,
String manifestFileURL) |
protected static String |
SPARQLQueryTest.getManifestName(Repository manifestRep,
RepositoryConnection con,
String manifestFileURL) |
protected abstract ParsedOperation |
SPARQL11SyntaxTest.parseOperation(String operation,
String fileURL) |
protected abstract void |
SPARQLSyntaxTest.parseQuery(String query,
String queryFileURL) |
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 |
NotifyingRepositoryConnectionWrapper.prepareUpdate(QueryLanguage ql,
String update,
String baseURI) |
Update |
InterceptingRepositoryConnectionWrapper.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 |
---|---|
protected CustomGraphQueryInferencer |
CustomGraphQueryInferencerTest.createRepository(boolean withMatchQuery) |
protected void |
CustomGraphQueryInferencerTest.runTest(CustomGraphQueryInferencer inferencer) |
void |
CustomGraphQueryInferencerTest.testCustomQueryInference() |
void |
CustomGraphQueryInferencerTest.testCustomQueryInferenceImplicitMatcher() |
Modifier and Type | Method and Description |
---|---|
protected Iterable<? extends DocumentDistance> |
ElasticsearchIndex.geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var contextVar) |
protected Iterable<? extends DocumentResult> |
ElasticsearchIndex.geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var contextVar) |
protected SearchQuery |
ElasticsearchIndex.parseQuery(String query,
URI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
ElasticsearchIndex.query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Parse the passed query.
|
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 |
---|---|
static String |
CustomGraphQueryInferencerConfig.buildMatcherQueryFromRuleQuery(QueryLanguage language,
String ruleQuery) |
Modifier and Type | Method and Description |
---|---|
protected abstract Iterable<? extends DocumentDistance> |
AbstractSearchIndex.geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var context) |
protected Iterable<? extends DocumentDistance> |
LuceneIndex.geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var contextVar) |
protected abstract Iterable<? extends DocumentResult> |
AbstractSearchIndex.geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var context) |
protected Iterable<? extends DocumentResult> |
LuceneIndex.geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var contextVar) |
protected abstract SearchQuery |
AbstractSearchIndex.parseQuery(String q,
URI property)
Deprecated.
|
protected SearchQuery |
LuceneIndex.parseQuery(String query,
URI propertyURI)
Deprecated.
|
protected abstract Iterable<? extends DocumentScore> |
AbstractSearchIndex.query(Resource subject,
String q,
URI property,
boolean highlight) |
protected Iterable<? extends DocumentScore> |
LuceneIndex.query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Parse the passed query.
|
void |
AbstractLuceneSailGeoSPARQLTest.testComplexDistanceQuery() |
void |
AbstractLuceneSailGeoSPARQLTest.testComplexIntersectionQuery() |
void |
AbstractLuceneSailTest.testComplexQueryOne() |
void |
AbstractLuceneSailTest.testComplexQueryTwo() |
void |
AbstractLuceneSailGeoSPARQLTest.testDistanceQuery() |
void |
AbstractLuceneSailTest.testFuzzyQuery() |
void |
AbstractLuceneSailTest.testGraphQuery() |
void |
AbstractLuceneSailGeoSPARQLTest.testIntersectionQuery() |
void |
AbstractLuceneSailTest.testMultipleLuceneQueries() |
void |
AbstractLuceneSailTest.testPredicateLuceneQueries() |
void |
AbstractLuceneSailTest.testPropertyVar() |
void |
AbstractLuceneSailTest.testQueryWithSpecifiedSubject() |
void |
AbstractLuceneSailTest.testRegularQuery() |
void |
AbstractLuceneSailIndexedPropertiesTest.testRegularQuery() |
void |
AbstractLuceneSailTest.testSnippetLimitedToPredicate()
Test if the snippets do not accidentially come from the "text" field while
we actually expect them to come from the predicate field.
|
void |
AbstractLuceneSailTest.testSnippetQueries() |
void |
AbstractLuceneSailTest.testUnionQuery() |
Modifier and Type | Method and Description |
---|---|
protected Iterable<? extends DocumentDistance> |
LuceneIndex.geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var contextVar)
Deprecated.
|
protected Iterable<? extends DocumentResult> |
LuceneIndex.geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var contextVar)
Deprecated.
|
protected SearchQuery |
LuceneIndex.parseQuery(String query,
URI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
LuceneIndex.query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Deprecated.
Parse the passed query.
|
Modifier and Type | Method and Description |
---|---|
protected Iterable<? extends DocumentDistance> |
LuceneIndex.geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var contextVar)
Deprecated.
|
protected Iterable<? extends DocumentResult> |
LuceneIndex.geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var contextVar)
Deprecated.
|
protected SearchQuery |
LuceneIndex.parseQuery(String query,
URI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
LuceneIndex.query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Deprecated.
Parse the passed query.
|
Modifier and Type | Method and Description |
---|---|
protected Iterable<? extends DocumentDistance> |
SolrIndex.geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var contextVar) |
protected Iterable<? extends DocumentResult> |
SolrIndex.geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var contextVar) |
protected SearchQuery |
SolrIndex.parseQuery(String query,
URI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
SolrIndex.query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Parse the passed query.
|
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-2016 Aduna. All Rights Reserved.