Class BooleanTextParser
- java.lang.Object
-
- org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
-
- org.eclipse.rdf4j.query.resultio.text.BooleanTextParser
-
- All Implemented Interfaces:
BooleanQueryResultParser,QueryResultParser
public class BooleanTextParser extends AbstractQueryResultParser implements BooleanQueryResultParser
Reader for the plain text boolean result format.
-
-
Field Summary
-
Fields inherited from class org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
handler, valueFactory
-
-
Constructor Summary
Constructors Constructor Description BooleanTextParser()Creates a new parser for the plain text boolean query result format.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanQueryResultFormatgetBooleanQueryResultFormat()Gets the query result format that this parser can parse.QueryResultFormatgetQueryResultFormat()Gets the query result format that this parser can parse.booleanparse(java.io.InputStream in)Parses the data from the supplied InputStream.voidparseQueryResult(java.io.InputStream in)Parse the query results out of the givenInputStreaminto the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler).-
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
-
-
-
-
Method Detail
-
getBooleanQueryResultFormat
public final BooleanQueryResultFormat getBooleanQueryResultFormat()
Description copied from interface:BooleanQueryResultParserGets the query result format that this parser can parse.- Specified by:
getBooleanQueryResultFormatin interfaceBooleanQueryResultParser
-
parse
public boolean parse(java.io.InputStream in) throws java.io.IOException, QueryResultParseExceptionDescription copied from interface:BooleanQueryResultParserParses the data from the supplied InputStream.- Specified by:
parsein interfaceBooleanQueryResultParser- Parameters:
in- The InputStream from which to read the data.- Throws:
java.io.IOException- If an I/O error occurred while data was read from the InputStream.QueryResultParseException- If the parser has encountered an unrecoverable parse error.
-
getQueryResultFormat
public final QueryResultFormat 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(java.io.InputStream in) throws java.io.IOException, QueryResultParseException, QueryResultHandlerExceptionDescription 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:
java.io.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.
-
-