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 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 plain text boolean query result format. -
Method Summary
Modifier and TypeMethodDescriptionfinal BooleanQueryResultFormatGets the query result format that this parser can parse.final QueryResultFormatGets the query result format that this parser can parse.booleanparse(InputStream in) Parses the data from the supplied InputStream.voidParse the query results out of the givenInputStreaminto the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler).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.
-
Constructor Details
-
BooleanTextParser
public BooleanTextParser()Creates a new parser for the plain text boolean query result format.
-
-
Method Details
-
getBooleanQueryResultFormat
Description copied from interface:BooleanQueryResultParserGets the query result format that this parser can parse.- Specified by:
getBooleanQueryResultFormatin interfaceBooleanQueryResultParser
-
parse
Description 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:
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
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.
-