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.
|
static RDFWriter |
Rio.createWriter(RDFFormat format,
OutputStream out) |
Convenience methods for creating RDFWriter objects.This method uses the registry returned by
RDFWriterRegistry.getInstance() to get a factory for the specified format and uses this factory to create
the appropriate writer.
|
static RDFWriter |
Rio.createWriter(RDFFormat format,
OutputStream out,
String baseURI) |
Convenience methods for creating RDFWriter objects.This method uses the registry returned by
RDFWriterRegistry.getInstance() to get a factory for the specified format and uses this factory to create
the appropriate writer.
|
static RDFWriter |
Rio.createWriter(RDFFormat format,
Writer writer) |
Convenience methods for creating RDFWriter objects.This method uses the registry returned by
RDFWriterRegistry.getInstance() to get a factory for the specified format and uses this factory to create
the appropriate writer.
|
static RDFWriter |
Rio.createWriter(RDFFormat format,
Writer writer,
String baseURI) |
Convenience methods for creating RDFWriter objects.This method uses the registry returned by
RDFWriterRegistry.getInstance() to get a factory for the specified format and uses this factory to create
the appropriate writer.
|
static void |
Rio.main(String[] args) |
|
static Model |
Rio.parse(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
Adds RDF data from an InputStream to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(InputStream in,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
Resource... contexts) |
Adds RDF data from an InputStream to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(InputStream in,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
ValueFactory valueFactory,
ParseErrorListener errors,
ModelFactory modelFactory,
Resource... contexts) |
Adds RDF data from an InputStream to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(InputStream in,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
ValueFactory valueFactory,
ParseErrorListener errors,
Resource... contexts) |
Adds RDF data from an InputStream to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(InputStream in,
RDFFormat dataFormat,
Resource... contexts) |
Adds RDF data from an InputStream to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(InputStream in,
RDFFormat dataFormat,
ParserConfig settings,
Resource... contexts) |
Adds RDF data from an InputStream to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
Adds RDF data from a Reader to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(Reader reader,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
ValueFactory valueFactory,
ParseErrorListener errors,
ModelFactory modelFactory,
Resource... contexts) |
Adds RDF data from a Reader to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(Reader reader,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
ValueFactory valueFactory,
ParseErrorListener errors,
Resource... contexts) |
Adds RDF data from a Reader to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(Reader reader,
RDFFormat dataFormat,
Resource... contexts) |
Adds RDF data from a Reader to a Model , optionally to one or more named contexts.
|
static Model |
Rio.parse(Reader reader,
RDFFormat dataFormat,
ParserConfig settings,
Resource... contexts) |
Adds RDF data from a Reader to a Model , optionally to one or more named contexts.
|
static void |
Rio.write(Iterable<Statement> model,
OutputStream output,
String baseURI,
RDFFormat dataFormat) |
Writes the given statements to the given OutputStream in the given format.
|
static void |
Rio.write(Iterable<Statement> model,
OutputStream output,
String baseURI,
RDFFormat dataFormat,
WriterConfig settings) |
Writes the given statements to the given OutputStream in the given format.
|
static void |
Rio.write(Iterable<Statement> model,
Writer output,
String baseURI,
RDFFormat dataFormat) |
Writes the given statements to the given Writer in the given format.
|
static void |
Rio.write(Iterable<Statement> model,
Writer output,
String baseURI,
RDFFormat dataFormat,
WriterConfig settings) |
Writes the given statements to the given Writer in the given format.
|