Class SPARQLResultsXMLParser
java.lang.Object
org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
org.eclipse.rdf4j.query.resultio.sparqlxml.AbstractSPARQLXMLParser
org.eclipse.rdf4j.query.resultio.sparqlxml.SPARQLResultsXMLParser
- All Implemented Interfaces:
QueryResultParser, TupleQueryResultParser, ErrorHandler
- Direct Known Subclasses:
SPARQLStarResultsXMLParser
public class SPARQLResultsXMLParser
extends AbstractSPARQLXMLParser
implements TupleQueryResultParser
Parser for reading tuple query results formatted as SPARQL Results Documents. See
SPARQL Query Results XML Format for the definition of this
format. The parser assumes that the XML is wellformed.
-
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
ConstructorsConstructorDescriptionCreates a new parser for the SPARQL Query Results XML Format that will use an instance ofSimpleValueFactoryto create Value objects.SPARQLResultsXMLParser(ValueFactory valueFactory) Creates a new parser for the SPARQL Query Results XML Format that will use the supplied ValueFactory to create Value objects. -
Method Summary
Modifier and TypeMethodDescriptionGets the query result format that this parser can parse.Gets the query result format that this parser can parse.voidparse(InputStream in) Deprecated.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 AbstractSPARQLXMLParser
error, fatalError, getCompulsoryXmlFeatureSettings, getCompulsoryXmlPropertySettings, getOptionalXmlFeatureSettings, getOptionalXmlPropertySettings, getSupportedSettings, parseQueryResultInternal, reportWarning, warningModifier and TypeMethodDescriptionvoiderror(SAXParseException exception) voidfatalError(SAXParseException exception) Returns a collection of settings that will always be set as XML parser features usingXMLReader.setFeature(String, boolean).Collection<RioSetting<?>> Returns a collection of settings that will always be set as XML parser properties usingXMLReader.setProperty(String, Object)Returns a collection of settings that will be used, if set inAbstractQueryResultParser.getParserConfig(), as XML parser features usingXMLReader.setFeature(String, boolean).Collection<RioSetting<?>> Returns a collection of settings that will be used, if set inAbstractQueryResultParser.getParserConfig(), as XML parser properties usingXMLReader.setProperty(String, Object)Collection<RioSetting<?>> protected booleanparseQueryResultInternal(InputStream in, boolean attemptParseBoolean, boolean attemptParseTuple) protected voidreportWarning(String msg) voidwarning(SAXParseException exception) Methods inherited from class AbstractQueryResultParser
getParseErrorListener, getParseLocationListener, getParserConfig, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactoryModifier and TypeMethodDescriptionRetrieves the current parser configuration as a single object.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.
-
Constructor Details
-
SPARQLResultsXMLParser
public SPARQLResultsXMLParser()Creates a new parser for the SPARQL Query Results XML Format that will use an instance ofSimpleValueFactoryto create Value objects. -
SPARQLResultsXMLParser
Creates a new parser for the SPARQL Query Results XML Format that will use the supplied ValueFactory to create Value objects.
-
-
Method Details
-
getTupleQueryResultFormat
Description copied from interface:TupleQueryResultParserGets the query result format that this parser can parse.- Specified by:
getTupleQueryResultFormatin interfaceTupleQueryResultParser
-
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.
-
setTupleQueryResultHandler
Description copied from interface:TupleQueryResultParserSets the TupleQueryResultHandler that will handle the parsed query result data.- Specified by:
setTupleQueryResultHandlerin interfaceTupleQueryResultParser
-
parseQueryResult
public void parseQueryResult(InputStream in) throws IOException, QueryResultParseException, TupleQueryResultHandlerException Description copied from interface:QueryResultParserParse the query results out of the givenInputStreaminto the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler).- Specified by:
parseQueryResultin interfaceQueryResultParser- Overrides:
parseQueryResultin classAbstractSPARQLXMLParser- 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.TupleQueryResultHandlerException
-
parse
@Deprecated public void parse(InputStream in) throws IOException, QueryResultParseException, TupleQueryResultHandlerException Deprecated.Description copied from interface:TupleQueryResultParserParses the data from the supplied InputStream.- Specified by:
parsein interfaceTupleQueryResultParser- Parameters:
in- The InputStream from which to read the data.- Throws:
IOException- If an I/O error occurred while data was read from the InputStream.QueryResultParseException- If the parser has encountered an unrecoverable parse error.TupleQueryResultHandlerException- If the configured query result handler has encountered an unrecoverable error.
-