Class SPARQLBooleanJSONParser
java.lang.Object
org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
org.eclipse.rdf4j.query.resultio.sparqljson.AbstractSPARQLJSONParser
org.eclipse.rdf4j.query.resultio.sparqljson.SPARQLBooleanJSONParser
- All Implemented Interfaces:
 BooleanQueryResultParser, QueryResultParser
public class SPARQLBooleanJSONParser
extends AbstractSPARQLJSONParser
implements BooleanQueryResultParser
Parser for SPARQL-1.1 JSON Results Format documents
- Author:
 - Peter Ansell
 - See Also:
 
- 
Field Summary
Fields inherited from class AbstractSPARQLJSONParser
BINDINGS, BNODE, BOOLEAN, DATATYPE, HEAD, LINK, LITERAL, RESULTS, TYPE, TYPED_LITERAL, URI, VALUE, VARS, XMLLANGFields inherited from class AbstractQueryResultParser
handler, valueFactory - 
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.SPARQLBooleanJSONParser(ValueFactory valueFactory) Construct a parser with a specificValueFactory. - 
Method Summary
Modifier and TypeMethodDescriptionGets the query result format that this parser can parse.Gets the query result format that this parser can parse.booleanparse(InputStream in) Deprecated.Methods inherited from class AbstractSPARQLJSONParser
checkTripleType, getSupportedSettings, parseQueryResult, parseQueryResultInternal, parseTripleValue, parseValueMethods inherited from class AbstractQueryResultParser
getParseErrorListener, getParseLocationListener, getParserConfig, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactoryMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface QueryResultParser
getParserConfig, getSupportedSettings, parseQueryResult, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactory 
- 
Constructor Details
- 
SPARQLBooleanJSONParser
public SPARQLBooleanJSONParser()Default constructor. - 
SPARQLBooleanJSONParser
Construct a parser with a specificValueFactory.- Parameters:
 valueFactory- The factory to use to create values.
 
 - 
 - 
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. 
 - 
getBooleanQueryResultFormat
Description copied from interface:BooleanQueryResultParserGets the query result format that this parser can parse.- Specified by:
 getBooleanQueryResultFormatin interfaceBooleanQueryResultParser
 - 
parse
Deprecated.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.
 
 -