Package | Description |
---|---|
org.eclipse.rdf4j.query.resultio | |
org.eclipse.rdf4j.query.resultio.binary | |
org.eclipse.rdf4j.query.resultio.sparqljson |
A writer for the
SPARQL Query Results JSON Format
|
org.eclipse.rdf4j.query.resultio.sparqlxml |
Parsers and writers for the
SPARQL Query Results XML Format
|
org.eclipse.rdf4j.query.resultio.text | |
org.eclipse.rdf4j.query.resultio.text.csv | |
org.eclipse.rdf4j.query.resultio.text.tsv |
Modifier and Type | Method and Description |
---|---|
void |
TupleQueryResultParser.parse(InputStream in)
Deprecated.
Use
QueryResultParser.parseQueryResult(InputStream) instead. |
boolean |
BooleanQueryResultParser.parse(InputStream in)
Deprecated.
Use
QueryResultParser.parseQueryResult(InputStream) instead. |
static boolean |
QueryResultIO.parseBoolean(InputStream in,
QueryResultFormat format)
Parses a boolean query result document and returns the parsed value.
|
void |
QueryResultParser.parseQueryResult(InputStream in)
Parse the query results out of the given
InputStream into the handler setup using
QueryResultParser.setQueryResultHandler(QueryResultHandler) . |
void |
AbstractTupleQueryResultParser.parseQueryResult(InputStream in) |
static TupleQueryResult |
QueryResultIO.parseTuple(InputStream in,
QueryResultFormat format)
Parses a query result document and returns it as a TupleQueryResult object.
|
static void |
QueryResultIO.parseTuple(InputStream in,
QueryResultFormat format,
TupleQueryResultHandler handler,
ValueFactory valueFactory)
Parses a query result document, reporting the parsed solutions to the supplied TupleQueryResultHandler.
|
static TupleQueryResult |
QueryResultIO.parseTupleBackground(InputStream in,
QueryResultFormat format)
Parses a query result document and returns it as a TupleQueryResult object, with parsing done on a separate
thread in the background.
IMPORTANT: As this method may spawn a new thread in the background, it is vitally important that the TupleQueryResult be closed consistently when it is no longer required, to prevent resource leaks. |
Modifier and Type | Method and Description |
---|---|
void |
BinaryQueryResultParser.parse(InputStream in) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLResultsJSONParser.parse(InputStream in)
Deprecated.
|
boolean |
SPARQLBooleanJSONParser.parse(InputStream in)
Deprecated.
|
void |
AbstractSPARQLJSONParser.parseQueryResult(InputStream in) |
protected boolean |
AbstractSPARQLJSONParser.parseQueryResultInternal(InputStream in,
boolean attemptParseBoolean,
boolean attemptParseTuple) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLResultsXMLParser.parse(InputStream in)
Deprecated.
|
boolean |
SPARQLBooleanXMLParser.parse(InputStream in)
Deprecated.
|
void |
SPARQLResultsXMLParser.parseQueryResult(InputStream in) |
void |
SPARQLBooleanXMLParser.parseQueryResult(InputStream in) |
void |
AbstractSPARQLXMLParser.parseQueryResult(InputStream in) |
protected boolean |
AbstractSPARQLXMLParser.parseQueryResultInternal(InputStream in,
boolean attemptParseBoolean,
boolean attemptParseTuple) |
Modifier and Type | Method and Description |
---|---|
boolean |
BooleanTextParser.parse(InputStream in) |
void |
BooleanTextParser.parseQueryResult(InputStream in) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLResultsCSVParser.parse(InputStream in) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLResultsTSVParser.parse(InputStream in) |
Copyright © 2015-2019 Eclipse Foundation. All Rights Reserved.