Package | Description |
---|---|
org.openrdf.http.client | |
org.openrdf.query |
Interfaces and classes for handling queries and query results.
|
org.openrdf.query.dawg |
Functionality to convert tuple query results to and from the
Data Access Working Group Test Result Set RDF Vocabulary
|
org.openrdf.query.impl | |
org.openrdf.query.parser.sparql.manifest | |
org.openrdf.query.resultio | |
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.repository.sparql.query |
Modifier and Type | Class and Description |
---|---|
class |
BackgroundTupleResult
Provides concurrent access to tuple results as they are being parsed.
|
Modifier and Type | Method and Description |
---|---|
TupleQueryResult |
SesameSession.getContextIDs() |
TupleQueryResult |
SesameSession.getNamespaces() |
TupleQueryResult |
SesameSession.getRepositoryList() |
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) |
Modifier and Type | Method and Description |
---|---|
static TupleQueryResult |
QueryResults.distinctResults(TupleQueryResult queryResult)
Returns a
TupleQueryResult that filters out any duplicate
solutions from the supplied queryResult. |
TupleQueryResult |
TupleQuery.evaluate() |
Modifier and Type | Method and Description |
---|---|
static TupleQueryResult |
QueryResults.distinctResults(TupleQueryResult queryResult)
Returns a
TupleQueryResult that filters out any duplicate
solutions from the supplied queryResult. |
static boolean |
QueryResults.equals(TupleQueryResult tqr1,
TupleQueryResult tqr2)
Compares two tuple query results and returns
true if they are
equal. |
static boolean |
QueryResults.isSubset(TupleQueryResult tqr1,
TupleQueryResult tqr2) |
static void |
QueryResults.report(TupleQueryResult tqr,
QueryResultHandler handler)
Reports a tuple query result to a
TupleQueryResultHandler . |
static BindingSet |
QueryResults.singleResult(TupleQueryResult result)
Returns a single element from the query result.
|
Modifier and Type | Method and Description |
---|---|
static TupleQueryResult |
DAWGTestResultSetUtil.toTupleQueryResult(Iterable<? extends Statement> dawgGraph) |
Modifier and Type | Method and Description |
---|---|
static Graph |
DAWGTestResultSetUtil.toGraph(TupleQueryResult tqr) |
Modifier and Type | Class and Description |
---|---|
class |
MutableTupleQueryResult
An implementation of the
TupleQueryResult interface that stores the
complete query result in memory. |
class |
TupleQueryResultImpl
A generic implementation of the
TupleQueryResult interface. |
Modifier and Type | Method and Description |
---|---|
TupleQueryResult |
TupleQueryResultBuilder.getQueryResult() |
Constructor and Description |
---|
MutableTupleQueryResult(TupleQueryResult tqr) |
Modifier and Type | Method and Description |
---|---|
protected TupleQueryResult |
SPARQLQueryTest.readExpectedTupleQueryResult() |
Modifier and Type | Method and Description |
---|---|
protected void |
SPARQLQueryTest.compareTupleQueryResults(TupleQueryResult queryResult,
TupleQueryResult expectedResult) |
Modifier and Type | Method and Description |
---|---|
protected TupleQueryResult |
AbstractQueryResultIOTest.createTupleMultipleBindingSets() |
protected TupleQueryResult |
AbstractQueryResultIOTest.createTupleNoBindingSets() |
protected TupleQueryResult |
AbstractQueryResultIOTest.createTupleSingleVarMultipleBindingSets() |
static TupleQueryResult |
QueryResultIO.parse(InputStream in,
TupleQueryResultFormat format)
Parses a query result document and returns it as a TupleQueryResult
object.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractQueryResultIOTest.assertQueryResultsEqual(TupleQueryResult expected,
TupleQueryResult output) |
protected void |
AbstractQueryResultIOTest.doBooleanParseNoHandlerOnTupleResults(BooleanQueryResultFormat format,
TupleQueryResult tqr,
TupleQueryResultFormat matchingTupleFormat)
Tests that the parser returned for a BooleanQueryResultFormat is not able
to parse a TupleQueryResultFormat using the deprecated
BooleanQueryResultParser.parse(java.io.InputStream) method, and
that it does indeed through an exception of type
QueryResultParseException . |
protected void |
AbstractQueryResultIOTest.doTupleJSONPCallback(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected)
Test specifically for JSONP callback support.
|
protected void |
AbstractQueryResultIOTest.doTupleLinks(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected,
List<String> links) |
protected void |
AbstractQueryResultIOTest.doTupleLinksAndStylesheet(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected,
List<String> links,
String stylesheetUrl) |
protected void |
AbstractQueryResultIOTest.doTupleLinksAndStylesheetAndNamespaces(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected,
List<String> links,
String stylesheetUrl,
Map<String,String> namespaces) |
protected void |
AbstractQueryResultIOTest.doTupleLinksAndStylesheetAndNamespacesQName(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected,
List<String> links,
String stylesheetUrl,
Map<String,String> namespaces)
Test specifically for QName support.
|
protected void |
AbstractQueryResultIOTest.doTupleLinksAndStylesheetMultipleEndHeaders(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected,
List<String> links,
String stylesheetUrl) |
protected void |
AbstractQueryResultIOTest.doTupleLinksAndStylesheetNoStarts(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected,
List<String> links,
String stylesheetUrl) |
protected void |
AbstractQueryResultIOTest.doTupleMissingStartQueryResult(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected,
List<String> links,
String stylesheetUrl) |
protected void |
AbstractQueryResultIOTest.doTupleNoHandler(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected)
Tests that parsing a tuple results set without specifying a
TupleQueryResultHandler does not throw any exceptions. |
protected void |
AbstractQueryResultIOTest.doTupleNoLinks(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected) |
protected void |
AbstractQueryResultIOTest.doTupleStylesheet(TupleQueryResultFormat format,
TupleQueryResult input,
TupleQueryResult expected,
String stylesheetUrl) |
static void |
QueryResultIO.write(TupleQueryResult tqr,
TupleQueryResultFormat format,
OutputStream out)
Writes a query result document in a specific query result format to an
output stream.
|
Modifier and Type | Method and Description |
---|---|
TupleQueryResult |
HTTPTupleQuery.evaluate() |
Modifier and Type | Method and Description |
---|---|
TupleQueryResult |
SailTupleQuery.evaluate() |
Modifier and Type | Method and Description |
---|---|
protected Iteration<Statement,QueryEvaluationException> |
SPARQLConnection.toStatementIteration(TupleQueryResult iter,
Resource subj,
URI pred,
Value obj)
Converts a
TupleQueryResult resulting from the SPARQLConnection.EVERYTHING_WITH_GRAPH
to a statement by using the respective values from the BindingSet or (if
provided) the ones from the arguments. |
Modifier and Type | Method and Description |
---|---|
TupleQueryResult |
SPARQLTupleQuery.evaluate() |
Copyright © 2001–2017 Aduna. All rights reserved.