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,
java.io.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,
java.io.OutputStream out,
java.lang.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,
java.io.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,
java.io.Writer writer,
java.lang.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(java.lang.String[] args) |
|
static Model |
Rio.parse(java.io.InputStream in,
java.lang.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(java.io.InputStream in,
java.lang.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(java.io.InputStream in,
java.lang.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(java.io.InputStream in,
java.lang.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(java.io.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(java.io.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(java.io.Reader reader,
java.lang.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(java.io.Reader reader,
java.lang.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(java.io.Reader reader,
java.lang.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(java.io.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(java.io.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(java.lang.Iterable<Statement> model,
java.io.OutputStream output,
java.lang.String baseURI,
RDFFormat dataFormat) |
Writes the given statements to the given OutputStream in the given format.
|
static void |
Rio.write(java.lang.Iterable<Statement> model,
java.io.OutputStream output,
java.lang.String baseURI,
RDFFormat dataFormat,
WriterConfig settings) |
Writes the given statements to the given OutputStream in the given format.
|
static void |
Rio.write(java.lang.Iterable<Statement> model,
java.io.Writer output,
java.lang.String baseURI,
RDFFormat dataFormat) |
Writes the given statements to the given Writer in the given format.
|
static void |
Rio.write(java.lang.Iterable<Statement> model,
java.io.Writer output,
java.lang.String baseURI,
RDFFormat dataFormat,
WriterConfig settings) |
Writes the given statements to the given Writer in the given format.
|