Package org.eclipse.rdf4j.query.resultio
Class AbstractTupleQueryResultParser
java.lang.Object
org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
org.eclipse.rdf4j.query.resultio.AbstractTupleQueryResultParser
- All Implemented Interfaces:
QueryResultParser
,TupleQueryResultParser
- Direct Known Subclasses:
BinaryQueryResultParser
,SPARQLResultsCSVParser
,SPARQLResultsTSVParser
public abstract class AbstractTupleQueryResultParser
extends AbstractQueryResultParser
implements TupleQueryResultParser
Base class for
TupleQueryResultParser
s offering common functionality for query result parsers.-
Field Summary
Fields inherited from class org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
handler, valueFactory
-
Constructor Summary
ModifierConstructorDescriptionprotected
Creates a new parser base that, by default, will use an instance ofSimpleValueFactory
to create Value objects.protected
AbstractTupleQueryResultParser
(ValueFactory valueFactory) Creates a new parser base that will use the suppliedValueFactory
to createValue
objects. -
Method Summary
Modifier and TypeMethodDescriptionGets the query result format that this parser can parse.void
Parse the query results out of the givenInputStream
into the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler)
.void
Sets the TupleQueryResultHandler that will handle the parsed query result data.Methods inherited from class org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
getParseErrorListener, getParseLocationListener, getParserConfig, getSupportedSettings, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactory
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.query.resultio.QueryResultParser
getParserConfig, getSupportedSettings, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactory
Methods inherited from interface org.eclipse.rdf4j.query.resultio.TupleQueryResultParser
getTupleQueryResultFormat, parse
-
Constructor Details
-
AbstractTupleQueryResultParser
protected AbstractTupleQueryResultParser()Creates a new parser base that, by default, will use an instance ofSimpleValueFactory
to create Value objects. -
AbstractTupleQueryResultParser
Creates a new parser base that will use the suppliedValueFactory
to createValue
objects.
-
-
Method Details
-
getQueryResultFormat
Description copied from interface:QueryResultParser
Gets the query result format that this parser can parse.- Specified by:
getQueryResultFormat
in interfaceQueryResultParser
- Returns:
- The
QueryResultFormat
supported by this parser.
-
parseQueryResult
public void parseQueryResult(InputStream in) throws IOException, QueryResultParseException, QueryResultHandlerException Description copied from interface:QueryResultParser
Parse the query results out of the givenInputStream
into the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler)
.- Specified by:
parseQueryResult
in interfaceQueryResultParser
- Parameters:
in
- TheInputStream
to parse the results from.- Throws:
IOException
- If there is an exception from the InputStream.QueryResultParseException
- If the query results are not parsable by this parser.QueryResultHandlerException
- If theQueryResultHandler
set inQueryResultParser.setQueryResultHandler(QueryResultHandler)
throws an exception.
-
setTupleQueryResultHandler
Description copied from interface:TupleQueryResultParser
Sets the TupleQueryResultHandler that will handle the parsed query result data.- Specified by:
setTupleQueryResultHandler
in interfaceTupleQueryResultParser
-