Class SPARQLResultsJSONParser
java.lang.Object
org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
org.eclipse.rdf4j.query.resultio.sparqljson.AbstractSPARQLJSONParser
org.eclipse.rdf4j.query.resultio.sparqljson.SPARQLResultsJSONParser
- All Implemented Interfaces:
QueryResultParser
,TupleQueryResultParser
- Direct Known Subclasses:
SPARQLStarResultsJSONParser
public class SPARQLResultsJSONParser
extends AbstractSPARQLJSONParser
implements TupleQueryResultParser
Parser for SPARQL-1.1 JSON Results Format documents.
- Author:
- Peter Ansell
- See Also:
-
Field Summary
Fields inherited from class org.eclipse.rdf4j.query.resultio.sparqljson.AbstractSPARQLJSONParser
BINDINGS, BNODE, BOOLEAN, DATATYPE, HEAD, LINK, LITERAL, RESULTS, TYPE, TYPED_LITERAL, URI, VALUE, VARS, XMLLANG
Fields inherited from class org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
handler, valueFactory
-
Constructor Summary
ConstructorDescriptionDefault constructor.SPARQLResultsJSONParser
(ValueFactory valueFactory) Construct a parser with a specificValueFactory
. -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
checkTripleType
(com.fasterxml.jackson.core.JsonParser jp, String type) Gets the query result format that this parser can parse.Gets the query result format that this parser can parse.void
parse
(InputStream in) Deprecated.protected Triple
parseTripleValue
(com.fasterxml.jackson.core.JsonParser jp, String fieldName) void
Deprecated.Methods inherited from class org.eclipse.rdf4j.query.resultio.sparqljson.AbstractSPARQLJSONParser
getSupportedSettings, parseQueryResult, parseQueryResultInternal, parseValue
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, parseQueryResult, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactory
-
Constructor Details
-
SPARQLResultsJSONParser
public SPARQLResultsJSONParser()Default constructor. -
SPARQLResultsJSONParser
Construct a parser with a specificValueFactory
.- Parameters:
valueFactory
- The factory to use to create values.
-
-
Method Details
-
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.
-
getTupleQueryResultFormat
Description copied from interface:TupleQueryResultParser
Gets the query result format that this parser can parse.- Specified by:
getTupleQueryResultFormat
in interfaceTupleQueryResultParser
-
setTupleQueryResultHandler
Deprecated.Description copied from interface:TupleQueryResultParser
Sets the TupleQueryResultHandler that will handle the parsed query result data.- Specified by:
setTupleQueryResultHandler
in interfaceTupleQueryResultParser
-
parse
@Deprecated public void parse(InputStream in) throws IOException, QueryResultParseException, TupleQueryResultHandlerException Deprecated.Description copied from interface:TupleQueryResultParser
Parses the data from the supplied InputStream.- Specified by:
parse
in 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.
-
parseTripleValue
protected Triple parseTripleValue(com.fasterxml.jackson.core.JsonParser jp, String fieldName) throws IOException - Overrides:
parseTripleValue
in classAbstractSPARQLJSONParser
- Throws:
IOException
-
checkTripleType
- Overrides:
checkTripleType
in classAbstractSPARQLJSONParser
-