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 AbstractSPARQLJSONParser
BINDINGS, BNODE, BOOLEAN, DATATYPE, HEAD, LINK, LITERAL, RESULTS, TYPE, TYPED_LITERAL, URI, VALUE, VARS, XMLLANGModifier and TypeFieldDescriptionstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final StringFields 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
ConstructorsConstructorDescriptionDefault constructor.SPARQLResultsJSONParser(ValueFactory valueFactory) Construct a parser with a specificValueFactory. -
Method Summary
Modifier and TypeMethodDescriptionprotected booleancheckTripleType(tools.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.voidparse(InputStream in) Deprecated.protected TripleparseTripleValue(tools.jackson.core.JsonParser jp, String fieldName) voidDeprecated.Methods inherited from class AbstractSPARQLJSONParser
getSupportedSettings, parseQueryResult, parseQueryResultInternal, parseValueModifier and TypeMethodDescriptionCollection<RioSetting<?>> voidParse the query results out of the givenInputStreaminto the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler).protected booleanparseQueryResultInternal(InputStream in, boolean attemptParseBoolean, boolean attemptParseTuple) protected ValueparseValue(tools.jackson.core.JsonParser jp, String bindingStr) Methods inherited from class AbstractQueryResultParser
getParseErrorListener, getParseLocationListener, getParserConfig, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactoryModifier and TypeMethodDescriptionRetrieves the current parser configuration as a single object.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
-
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:QueryResultParserGets the query result format that this parser can parse.- Specified by:
getQueryResultFormatin interfaceQueryResultParser- Returns:
- The
QueryResultFormatsupported by this parser.
-
getTupleQueryResultFormat
Description copied from interface:TupleQueryResultParserGets the query result format that this parser can parse.- Specified by:
getTupleQueryResultFormatin interfaceTupleQueryResultParser
-
setTupleQueryResultHandler
Deprecated.Description copied from interface:TupleQueryResultParserSets the TupleQueryResultHandler that will handle the parsed query result data.- Specified by:
setTupleQueryResultHandlerin interfaceTupleQueryResultParser
-
parse
@Deprecated public void parse(InputStream in) throws IOException, QueryResultParseException, TupleQueryResultHandlerException Deprecated.Description copied from interface:TupleQueryResultParserParses the data from the supplied InputStream.- Specified by:
parsein 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(tools.jackson.core.JsonParser jp, String fieldName) throws IOException - Overrides:
parseTripleValuein classAbstractSPARQLJSONParser- Throws:
IOException
-
checkTripleType
- Overrides:
checkTripleTypein classAbstractSPARQLJSONParser
-