| Package | Description |
|---|---|
| org.eclipse.rdf4j.query.resultio |
| Modifier and Type | Method and Description |
|---|---|
boolean |
BooleanQueryResultParser.parse(InputStream in)
Deprecated.
Use
QueryResultParser.parseQueryResult(InputStream) instead. |
void |
TupleQueryResultParser.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 |
AbstractTupleQueryResultParser.parseQueryResult(InputStream in) |
void |
QueryResultParser.parseQueryResult(InputStream in)
Parse the query results out of the given
InputStream into the handler setup using
QueryResultParser.setQueryResultHandler(QueryResultHandler). |
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. |
Copyright © 2015-2018 Eclipse Foundation. All Rights Reserved.