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.resultio | |
org.openrdf.query.resultio.binary | |
org.openrdf.query.resultio.helpers | |
org.openrdf.query.resultio.sparqljson |
A writer for the SPARQL Query Results JSON Format
|
org.openrdf.query.resultio.sparqlxml |
Parsers and writers for the SPARQL Query Results XML Format
|
org.openrdf.query.resultio.text | |
org.openrdf.query.resultio.text.csv | |
org.openrdf.query.resultio.text.tsv | |
org.openrdf.repository.http |
A repository that serves as a proxy for a remote repository on a Sesame server.
|
org.openrdf.repository.sail |
Repository implementation for local storage backends.
|
org.openrdf.repository.sparql.query |
Modifier and Type | Method and Description |
---|---|
void |
BackgroundTupleResult.endQueryResult() |
void |
SesameHTTPClient.getContextIDs(TupleQueryResultHandler handler) |
void |
SesameHTTPClient.getNamespaces(TupleQueryResultHandler handler) |
void |
SesameHTTPClient.getRepositoryList(TupleQueryResultHandler handler) |
protected void |
HTTPClient.getTupleQueryResult(org.apache.commons.httpclient.HttpMethod method,
TupleQueryResultHandler handler)
Parse the response in this thread using the provided
TupleQueryResultHandler . |
void |
BackgroundTupleResult.handleSolution(BindingSet bindingSet) |
void |
HTTPClient.sendTupleQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
TupleQueryResultHandler handler,
Binding... bindings) |
void |
BackgroundTupleResult.startQueryResult(List<String> bindingNames) |
Modifier and Type | Method and Description |
---|---|
void |
TupleQueryResultHandlerBase.endQueryResult() |
void |
QueryResultHandler.endQueryResult()
Indicates the end of a sequence of solutions.
|
void |
TupleQuery.evaluate(TupleQueryResultHandler handler) |
void |
TupleQueryResultHandlerBase.handleSolution(BindingSet bindingSet) |
void |
QueryResultHandler.handleSolution(BindingSet bindingSet)
Handles a solution.
|
static void |
QueryResults.report(TupleQueryResult tqr,
QueryResultHandler handler)
Reports a tuple query result to a
TupleQueryResultHandler . |
void |
TupleQueryResultHandlerBase.startQueryResult(List<String> bindingNames) |
void |
QueryResultHandler.startQueryResult(List<String> bindingNames)
Indicates the start of a sequence of Solutions.
|
Modifier and Type | Method and Description |
---|---|
void |
DAWGTestResultSetWriter.endQueryResult() |
void |
DAWGTestResultSetWriter.handleSolution(BindingSet bindingSet) |
void |
DAWGTestResultSetWriter.startQueryResult(List<String> bindingNames) |
Modifier and Type | Method and Description |
---|---|
void |
TupleQueryResultBuilder.handleSolution(BindingSet bindingSet) |
void |
TupleQueryResultBuilder.startQueryResult(List<String> bindingNames) |
Modifier and Type | Method and Description |
---|---|
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.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) |
void |
TupleQueryResultParser.parse(InputStream in)
Deprecated.
Use
QueryResultParser.parseQueryResult(InputStream) instead. |
static TupleQueryResult |
QueryResultIO.parse(InputStream in,
TupleQueryResultFormat format)
Parses a query result document and returns it as a TupleQueryResult
object.
|
static void |
QueryResultIO.parse(InputStream in,
TupleQueryResultFormat format,
TupleQueryResultHandler handler,
ValueFactory valueFactory)
Parses a query result document, reporting the parsed solutions to the
supplied TupleQueryResultHandler.
|
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 |
---|---|
void |
BinaryQueryResultWriter.endQueryResult() |
void |
BinaryQueryResultWriter.handleSolution(BindingSet bindingSet) |
void |
BinaryQueryResultParser.parse(InputStream in) |
void |
BinaryQueryResultWriter.startDocument() |
void |
BinaryQueryResultWriter.startQueryResult(List<String> bindingNames) |
Modifier and Type | Method and Description |
---|---|
void |
QueryResultCollector.endQueryResult() |
void |
QueryResultCollector.handleSolution(BindingSet bindingSet) |
void |
QueryResultCollector.startQueryResult(List<String> bindingNames) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLResultsJSONParser.parse(InputStream in)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
SPARQLResultsXMLParser.parse(InputStream in) |
Modifier and Type | Method and Description |
---|---|
void |
BooleanTextWriter.endQueryResult() |
void |
BooleanTextWriter.handleSolution(BindingSet bindingSet) |
void |
BooleanTextWriter.startQueryResult(List<String> bindingNames) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLResultsCSVWriter.endQueryResult() |
void |
SPARQLResultsCSVWriter.handleSolution(BindingSet bindingSet) |
void |
SPARQLResultsCSVParser.parse(InputStream in) |
void |
SPARQLResultsCSVWriter.startQueryResult(List<String> bindingNames) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLResultsTSVWriter.endHeader() |
void |
SPARQLResultsTSVWriter.endQueryResult() |
void |
SPARQLResultsTSVWriter.handleLinks(List<String> linkUrls) |
void |
SPARQLResultsTSVWriter.handleSolution(BindingSet bindingSet) |
void |
SPARQLResultsTSVWriter.handleStylesheet(String stylesheetUrl) |
void |
SPARQLResultsTSVParser.parse(InputStream in) |
void |
SPARQLResultsTSVWriter.startDocument() |
void |
SPARQLResultsTSVWriter.startHeader() |
void |
SPARQLResultsTSVWriter.startQueryResult(List<String> bindingNames) |
Modifier and Type | Method and Description |
---|---|
void |
HTTPTupleQuery.evaluate(TupleQueryResultHandler handler) |
Modifier and Type | Method and Description |
---|---|
void |
SailTupleQuery.evaluate(TupleQueryResultHandler handler) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLTupleQuery.evaluate(TupleQueryResultHandler handler) |
Copyright © 2001-2016 Aduna. All Rights Reserved.