Class SPARQLBooleanXMLParser
- java.lang.Object
-
- org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
-
- org.eclipse.rdf4j.query.resultio.sparqlxml.AbstractSPARQLXMLParser
-
- org.eclipse.rdf4j.query.resultio.sparqlxml.SPARQLBooleanXMLParser
-
- All Implemented Interfaces:
BooleanQueryResultParser
,QueryResultParser
,ErrorHandler
public class SPARQLBooleanXMLParser extends AbstractSPARQLXMLParser implements BooleanQueryResultParser
Parser for reading boolean 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 org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
handler, valueFactory
-
-
Constructor Summary
Constructors Constructor Description SPARQLBooleanXMLParser()
Creates a new parser for the SPARQL Query Results XML Format.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description BooleanQueryResultFormat
getBooleanQueryResultFormat()
Gets the query result format that this parser can parse.QueryResultFormat
getQueryResultFormat()
Gets the query result format that this parser can parse.boolean
parse(InputStream in)
Deprecated.void
parseQueryResult(InputStream in)
Parse the query results out of the givenInputStream
into the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler)
.-
Methods inherited from class org.eclipse.rdf4j.query.resultio.sparqlxml.AbstractSPARQLXMLParser
error, fatalError, getCompulsoryXmlFeatureSettings, getCompulsoryXmlPropertySettings, getOptionalXmlFeatureSettings, getOptionalXmlPropertySettings, getSupportedSettings, parseQueryResultInternal, reportWarning, warning
-
Methods inherited from class org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
getParseErrorListener, getParseLocationListener, getParserConfig, 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
-
-
-
-
Method Detail
-
getBooleanQueryResultFormat
public BooleanQueryResultFormat getBooleanQueryResultFormat()
Description copied from interface:BooleanQueryResultParser
Gets the query result format that this parser can parse.- Specified by:
getBooleanQueryResultFormat
in interfaceBooleanQueryResultParser
-
getQueryResultFormat
public QueryResultFormat 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
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
- Overrides:
parseQueryResult
in classAbstractSPARQLXMLParser
- 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.
-
parse
@Deprecated public boolean parse(InputStream in) throws IOException, QueryResultParseException
Deprecated.Description copied from interface:BooleanQueryResultParser
Parses the data from the supplied InputStream.- Specified by:
parse
in interfaceBooleanQueryResultParser
- 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.
-
-