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
TupleQueryResultParsers offering common functionality for query result parsers.-
Field Summary
Fields inherited from class AbstractQueryResultParser
handler, valueFactoryModifier and TypeFieldDescriptionprotected QueryResultHandlerTheQueryResultHandlerthat will handle the parsed query results.protected ValueFactoryTheValueFactoryto use for creating RDF model objects. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCreates a new parser base that, by default, will use an instance ofSimpleValueFactoryto create Value objects.protectedAbstractTupleQueryResultParser(ValueFactory valueFactory) Creates a new parser base that will use the suppliedValueFactoryto createValueobjects. -
Method Summary
Modifier and TypeMethodDescriptionGets the query result format that this parser can parse.voidParse the query results out of the givenInputStreaminto the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler).voidSets the TupleQueryResultHandler that will handle the parsed query result data.Methods inherited from class AbstractQueryResultParser
getParseErrorListener, getParseLocationListener, getParserConfig, getSupportedSettings, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactoryModifier and TypeMethodDescriptionRetrieves the current parser configuration as a single object.Collection<RioSetting<?>> set(RioSetting<T> setting, T value) Set a setting on the parser, and return this parser object to allow chaining.Sets the ParseErrorListener that will be notified of any errors that this parser finds during parsing.Sets the ParseLocationListener that will be notified of the parser's progress during the parse process.setParserConfig(ParserConfig config) Sets all supplied parser configuration options.setQueryResultHandler(QueryResultHandler handler) Sets theQueryResultHandlerto be used when parsing query results usingQueryResultParser.parseQueryResult(InputStream).setValueFactory(ValueFactory valueFactory) Sets the ValueFactory that the parser will use to create Value objects for the parsed query result.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface TupleQueryResultParser
getTupleQueryResultFormat, parseModifier and TypeMethodDescriptionGets the query result format that this parser can parse.voidparse(InputStream in) Deprecated.
-
Constructor Details
-
AbstractTupleQueryResultParser
protected AbstractTupleQueryResultParser()Creates a new parser base that, by default, will use an instance ofSimpleValueFactoryto create Value objects. -
AbstractTupleQueryResultParser
Creates a new parser base that will use the suppliedValueFactoryto createValueobjects.
-
-
Method Details
-
getQueryResultFormat
Description copied from interface:QueryResultParserGets the query result format that this parser can parse.- Specified by:
getQueryResultFormatin interfaceQueryResultParser- Returns:
- The
QueryResultFormatsupported by this parser.
-
parseQueryResult
public void parseQueryResult(InputStream in) throws IOException, QueryResultParseException, QueryResultHandlerException Description copied from interface:QueryResultParserParse the query results out of the givenInputStreaminto the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler).- Specified by:
parseQueryResultin interfaceQueryResultParser- Parameters:
in- TheInputStreamto 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 theQueryResultHandlerset inQueryResultParser.setQueryResultHandler(QueryResultHandler)throws an exception.
-
setTupleQueryResultHandler
Description copied from interface:TupleQueryResultParserSets the TupleQueryResultHandler that will handle the parsed query result data.- Specified by:
setTupleQueryResultHandlerin interfaceTupleQueryResultParser
-
QueryResultParser.parseQueryResult(InputStream)instead.