Modifier and Type | Method and Description |
---|---|
GraphQueryResult |
BackgroundResultExecutor.parse(RDFParser parser,
InputStream in,
Charset charset,
String baseURI) |
Constructor and Description |
---|
BackgroundGraphResult(QueueCursor<Statement> queue,
RDFParser parser,
InputStream in,
Charset charset,
String baseURI)
Deprecated.
|
BackgroundGraphResult(RDFParser parser,
InputStream in,
Charset charset,
String baseURI)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static GraphQueryResult |
QueryResults.parseGraphBackground(InputStream in,
String baseURI,
RDFParser parser)
Parses an RDF document and returns it as a GraphQueryResult object, with parsing done on a separate thread in the
background.
IMPORTANT: As this method will spawn a new thread in the background, it is vitally important that the resulting GraphQueryResult be closed consistently when it is no longer required, to prevent resource leaks. |
Constructor and Description |
---|
BackgroundGraphResult(QueueCursor<Statement> queue,
RDFParser parser,
InputStream in,
Charset charset,
String baseURI) |
BackgroundGraphResult(RDFParser parser,
InputStream in,
Charset charset,
String baseURI) |
Modifier and Type | Class and Description |
---|---|
class |
SPARQLUpdateDataBlockParser
An extension of
TriGStarParser that processes data in the format specified in the SPARQL 1.1 grammar for Quad
data (assuming no variables, as is the case for INSERT DATA and DELETE DATA operations). |
Modifier and Type | Method and Description |
---|---|
static RDFParser |
Rio.createParser(RDFFormat format)
Convenience methods for creating RDFParser objects.This method uses the registry returned by
RDFParserRegistry.getInstance() to get a factory for the specified format and uses this factory to create
the appropriate parser. |
static RDFParser |
Rio.createParser(RDFFormat format,
ValueFactory valueFactory)
Convenience methods for creating RDFParser objects that use the specified ValueFactory to create RDF model
objects.
|
RDFParser |
RDFParserFactory.getParser()
Returns a RDFParser instance.
|
<T> RDFParser |
RDFParser.set(RioSetting<T> setting,
T value)
Set a setting on the parser, and return this parser object to allow chaining.
|
RDFParser |
RDFParser.setParseErrorListener(ParseErrorListener el)
Sets the ParseErrorListener that will be notified of any errors that this parser finds during parsing.
|
RDFParser |
RDFParser.setParseLocationListener(ParseLocationListener ll)
Sets the ParseLocationListener that will be notified of the parser's progress during the parse process.
|
RDFParser |
RDFParser.setParserConfig(ParserConfig config)
Sets all supplied parser configuration options.
|
RDFParser |
RDFParser.setRDFHandler(RDFHandler handler)
Sets the RDFHandler that will handle the parsed RDF data.
|
RDFParser |
RDFParser.setValueFactory(ValueFactory valueFactory)
Sets the ValueFactory that the parser will use to create Value objects for the parsed RDF data.
|
Constructor and Description |
---|
NegativeParserTest(IRI testUri,
String caseURI,
String inputURL,
String baseURL,
RDFParser targetParser,
FailureMode failureMode) |
PositiveParserTest(IRI testUri,
String testName,
String inputURL,
String outputURL,
String baseURL,
RDFParser targetParser,
RDFParser ntriplesParser) |
Modifier and Type | Class and Description |
---|---|
class |
BinaryRDFParser |
Modifier and Type | Method and Description |
---|---|
RDFParser |
BinaryRDFParserFactory.getParser()
Returns a new instance of
BinaryRDFParser . |
Modifier and Type | Class and Description |
---|---|
class |
HDTParser
RDF parser for HDT v1.0 files.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractRDFParser
Base class for
RDFParser s offering common functionality for RDF parsers. |
class |
RDFParserBase
Deprecated.
since 2.0. Use
AbstractRDFParser instead. |
class |
XMLReaderBasedParser
Base class for Rio parsers that are based on a SAX
XMLReader . |
Modifier and Type | Method and Description |
---|---|
<T> RDFParser |
AbstractRDFParser.set(RioSetting<T> setting,
T value) |
RDFParser |
AbstractRDFParser.setParseErrorListener(ParseErrorListener el) |
RDFParser |
AbstractRDFParser.setParseLocationListener(ParseLocationListener el) |
RDFParser |
AbstractRDFParser.setParserConfig(ParserConfig config) |
RDFParser |
AbstractRDFParser.setRDFHandler(RDFHandler handler) |
RDFParser |
AbstractRDFParser.setValueFactory(ValueFactory valueFactory) |
Modifier and Type | Class and Description |
---|---|
class |
JSONLDParser
An
RDFParser that links to JSONLDInternalTripleCallback . |
Modifier and Type | Method and Description |
---|---|
RDFParser |
JSONLDParserFactory.getParser() |
Modifier and Type | Class and Description |
---|---|
class |
N3Parser |
Modifier and Type | Method and Description |
---|---|
protected abstract RDFParser |
N3ParserTestCase.createRDFParser() |
RDFParser |
N3ParserFactory.getParser()
Returns a new instance of
N3Parser . |
Modifier and Type | Class and Description |
---|---|
class |
NDJSONLDParser
Introduce a parser capable of parsing Newline Delimited JSON-LD, where each line is a serialized JSON-LD record.
|
Modifier and Type | Method and Description |
---|---|
RDFParser |
NDJSONLDParserFactory.getParser() |
Modifier and Type | Class and Description |
---|---|
class |
NQuadsParser
RDF parser implementation for the
N-Quads RDF format, extending the Rio N-Triples parser. |
Modifier and Type | Method and Description |
---|---|
protected abstract RDFParser |
AbstractNQuadsParserTest.createRDFParser() |
RDFParser |
NQuadsParserFactory.getParser()
Returns a new instance of NQuadsParser.
|
Modifier and Type | Class and Description |
---|---|
class |
NTriplesParser
RDF parser for N-Triples files.
|
Modifier and Type | Method and Description |
---|---|
protected abstract RDFParser |
AbstractNTriplesParserTest.createRDFParser() |
RDFParser |
NTriplesParserFactory.getParser()
Returns a new instance of NTriplesParser.
|
Modifier and Type | Class and Description |
---|---|
class |
RDFJSONParser
RDFParser implementation for the RDF/JSON format |
Modifier and Type | Method and Description |
---|---|
protected abstract RDFParser |
RDFJSONParserTestCase.createRDFParser() |
RDFParser |
RDFJSONParserFactory.getParser() |
Modifier and Type | Class and Description |
---|---|
class |
RDFXMLParser
A parser for XML-serialized RDF.
|
Modifier and Type | Method and Description |
---|---|
protected abstract RDFParser |
RDFXMLParserTestCase.createRDFParser() |
RDFParser |
RDFXMLParserFactory.getParser()
Returns a new instance of RDFXMLParser.
|
Modifier and Type | Class and Description |
---|---|
class |
TriGParser
RDF parser for RDF-1.1 TriG files.
|
Modifier and Type | Method and Description |
---|---|
protected abstract RDFParser |
TriGParserTestCase.createNQuadsParser() |
protected abstract RDFParser |
TriGParserTestCase.createTriGParser() |
RDFParser |
TriGParserFactory.getParser()
Returns a new instance of
TriGParser . |
Modifier and Type | Class and Description |
---|---|
class |
TriGStarParser
RDF parser for TriG-star (an extension of TriG that adds RDF-star support).
|
Modifier and Type | Method and Description |
---|---|
RDFParser |
TriGStarParserFactory.getParser()
Returns a new instance of
TriGStarParser . |
Modifier and Type | Class and Description |
---|---|
class |
TriXParser
A parser that can parse RDF files that are in the TriX format .
|
Modifier and Type | Method and Description |
---|---|
RDFParser |
TriXParserFactory.getParser()
Returns a new instance of
TriXParser . |
Modifier and Type | Class and Description |
---|---|
class |
TurtleParser
RDF parser for RDF-1.1 Turtle files.
|
Modifier and Type | Method and Description |
---|---|
protected abstract RDFParser |
TurtleParserTestCase.createNTriplesParser() |
protected abstract RDFParser |
TurtleParserTestCase.createTurtleParser() |
RDFParser |
TurtleParserFactory.getParser()
Returns a new instance of
TurtleParser . |
Modifier and Type | Class and Description |
---|---|
class |
TurtleStarParser
RDF parser for Turtle-star (an extension of Turtle that adds RDF-star support).
|
Modifier and Type | Method and Description |
---|---|
RDFParser |
TurtleStarParserFactory.getParser()
Returns a new instance of
TurtleStarParser . |
Copyright © 2015-2022 Eclipse Foundation. All Rights Reserved.