Package | Description |
---|---|
org.eclipse.rdf4j.console.command | |
org.eclipse.rdf4j.console.util | |
org.eclipse.rdf4j.rio |
Rio: The rdf4j parser/writer API.
|
org.eclipse.rdf4j.rio.binary |
Parser/writer for the rdf4j binary RDF format.
|
org.eclipse.rdf4j.rio.helpers |
Provides helpers classes for Rio.
|
org.eclipse.rdf4j.rio.jsonld |
Parser/writer for the JSON-L format.
|
org.eclipse.rdf4j.rio.n3 |
Writer for the Notation-3 (N3) format.
|
org.eclipse.rdf4j.rio.nquads |
Parser/writer for the N-Quads format.
|
org.eclipse.rdf4j.rio.ntriples |
Parser/writer for the N-Triples format.
|
org.eclipse.rdf4j.rio.rdfjson |
Parser/writer for the RDF/JSON format.
|
org.eclipse.rdf4j.rio.rdfxml |
Parser/writer for the RDF/XML format.
|
org.eclipse.rdf4j.rio.rdfxml.util |
Pretty-printing for the RDF/XML format.
|
org.eclipse.rdf4j.rio.trig |
Parser/writer for the TriG format.
|
org.eclipse.rdf4j.rio.trix |
Parser/writer for the TriX format.
|
org.eclipse.rdf4j.rio.turtle |
Parser/writer for the Turtle format.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TupleAndGraphQueryEvaluator.evaluateGraphQuery(QueryLanguage queryLn,
String queryString,
RDFWriter writer)
Evaluate SPARQL or SERQL graph query
|
Modifier and Type | Class and Description |
---|---|
class |
ConsoleRDFWriter
Write query results to console
|
Modifier and Type | Method and Description |
---|---|
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. |
RDFWriter |
RDFWriterFactory.getWriter(OutputStream out)
Returns an RDFWriter instance that will write to the supplied output stream.
|
RDFWriter |
RDFWriterFactory.getWriter(OutputStream out,
String baseURI)
Returns an RDFWriter instance that will write to the supplied output stream.
|
RDFWriter |
RDFWriterFactory.getWriter(Writer writer)
Returns an RDFWriter instance that will write to the supplied writer.
|
RDFWriter |
RDFWriterFactory.getWriter(Writer writer,
String baseURI)
Returns an RDFWriter instance that will write to the supplied writer.
|
<T> RDFWriter |
RDFWriter.set(RioSetting<T> setting,
T value)
Set a setting on the writer, and return this writer object to allow chaining.
|
RDFWriter |
RDFWriter.setWriterConfig(WriterConfig config)
Sets all supplied writer configuration options.
|
Modifier and Type | Class and Description |
---|---|
class |
BinaryRDFWriter |
Modifier and Type | Method and Description |
---|---|
RDFWriter |
BinaryRDFWriterFactory.getWriter(OutputStream out)
Returns a new instance of
BinaryRDFWriter . |
RDFWriter |
BinaryRDFWriterFactory.getWriter(OutputStream out,
String baseURI) |
RDFWriter |
BinaryRDFWriterFactory.getWriter(Writer writer)
throws UnsupportedOperationException
|
RDFWriter |
BinaryRDFWriterFactory.getWriter(Writer writer,
String baseURI)
throws UnsupportedOperationException
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractRDFWriter
Base class for
RDFWriter s offering common functionality for RDF writers. |
class |
RDFWriterBase
Deprecated.
since 2.0. Use
AbstractRDFWriter instead. |
Modifier and Type | Method and Description |
---|---|
<T> RDFWriter |
AbstractRDFWriter.set(RioSetting<T> setting,
T value) |
RDFWriter |
AbstractRDFWriter.setWriterConfig(WriterConfig config) |
Modifier and Type | Class and Description |
---|---|
class |
JSONLDWriter
An RDFWriter that links to
JSONLDInternalRDFParser . |
Modifier and Type | Method and Description |
---|---|
RDFWriter |
JSONLDWriterFactory.getWriter(OutputStream out) |
RDFWriter |
JSONLDWriterFactory.getWriter(OutputStream out,
String baseURI) |
RDFWriter |
JSONLDWriterFactory.getWriter(Writer writer) |
RDFWriter |
JSONLDWriterFactory.getWriter(Writer writer,
String baseURI) |
Modifier and Type | Class and Description |
---|---|
class |
N3Writer
An implementation of the RDFWriter interface that writes RDF documents in N3 format.
|
Modifier and Type | Method and Description |
---|---|
RDFWriter |
N3WriterFactory.getWriter(OutputStream out)
Returns a new instance of
N3Writer . |
RDFWriter |
N3WriterFactory.getWriter(OutputStream out,
String baseURI) |
RDFWriter |
N3WriterFactory.getWriter(Writer writer)
Returns a new instance of
N3Writer . |
RDFWriter |
N3WriterFactory.getWriter(Writer writer,
String baseURI) |
Modifier and Type | Class and Description |
---|---|
class |
NQuadsWriter
RDFWriter implementation for the
N-Quads RDF format. |
Modifier and Type | Method and Description |
---|---|
RDFWriter |
NQuadsWriterFactory.getWriter(OutputStream out)
Returns a new instance of
NQuadsWriter . |
RDFWriter |
NQuadsWriterFactory.getWriter(OutputStream out,
String baseURI) |
RDFWriter |
NQuadsWriterFactory.getWriter(Writer writer)
Returns a new instance of
NQuadsWriter . |
RDFWriter |
NQuadsWriterFactory.getWriter(Writer writer,
String baseURI) |
Modifier and Type | Class and Description |
---|---|
class |
NTriplesWriter
An implementation of the RDFWriter interface that writes RDF documents in N-Triples format.
|
Modifier and Type | Method and Description |
---|---|
RDFWriter |
NTriplesWriterFactory.getWriter(OutputStream out)
Returns a new instance of
NTriplesWriter . |
RDFWriter |
NTriplesWriterFactory.getWriter(OutputStream out,
String baseURI) |
RDFWriter |
NTriplesWriterFactory.getWriter(Writer writer)
Returns a new instance of
NTriplesWriter . |
RDFWriter |
NTriplesWriterFactory.getWriter(Writer writer,
String baseURI) |
Modifier and Type | Class and Description |
---|---|
class |
RDFJSONWriter
RDFWriter implementation for the RDF/JSON format |
Modifier and Type | Method and Description |
---|---|
RDFWriter |
RDFJSONWriterFactory.getWriter(OutputStream out) |
RDFWriter |
RDFJSONWriterFactory.getWriter(OutputStream out,
String baseURI) |
RDFWriter |
RDFJSONWriterFactory.getWriter(Writer writer) |
RDFWriter |
RDFJSONWriterFactory.getWriter(Writer writer,
String baseURI) |
Modifier and Type | Class and Description |
---|---|
class |
RDFXMLWriter
An implementation of the RDFWriter interface that writes RDF documents in XML-serialized RDF format.
|
Modifier and Type | Method and Description |
---|---|
RDFWriter |
RDFXMLWriterFactory.getWriter(OutputStream out)
Returns a new instance of
RDFXMLWriter . |
RDFWriter |
RDFXMLWriterFactory.getWriter(OutputStream out,
String baseURI)
Returns a new instance of
RDFXMLWriter . |
RDFWriter |
RDFXMLWriterFactory.getWriter(Writer writer)
Returns a new instance of
RDFXMLWriter . |
RDFWriter |
RDFXMLWriterFactory.getWriter(Writer writer,
String baseURI)
Returns a new instance of
RDFXMLWriter . |
Modifier and Type | Class and Description |
---|---|
class |
RDFXMLPrettyWriter
An extension of RDFXMLWriter that outputs a more concise form of RDF/XML.
|
Modifier and Type | Method and Description |
---|---|
RDFWriter |
RDFXMLPrettyWriterFactory.getWriter(OutputStream out)
Returns a new instance of
RDFXMLPrettyWriter . |
RDFWriter |
RDFXMLPrettyWriterFactory.getWriter(OutputStream out,
String baseURI)
Returns a new instance of
RDFXMLPrettyWriter . |
RDFWriter |
RDFXMLPrettyWriterFactory.getWriter(Writer writer)
Returns a new instance of
RDFXMLPrettyWriter . |
RDFWriter |
RDFXMLPrettyWriterFactory.getWriter(Writer writer,
String baseURI)
Returns a new instance of
RDFXMLPrettyWriter . |
Modifier and Type | Class and Description |
---|---|
class |
TriGWriter
An extension of
TurtleWriter that writes RDF documents in
TriG format by adding graph scopes to the Turtle
document. |
Modifier and Type | Method and Description |
---|---|
RDFWriter |
TriGWriterFactory.getWriter(OutputStream out)
Returns a new instance of
TriGWriter . |
RDFWriter |
TriGWriterFactory.getWriter(OutputStream out,
String baseURI)
Returns a new instance of
TriGWriter . |
RDFWriter |
TriGWriterFactory.getWriter(Writer writer)
Returns a new instance of
TriGWriter . |
RDFWriter |
TriGWriterFactory.getWriter(Writer writer,
String baseURI)
Returns a new instance of
TriGWriter . |
Modifier and Type | Class and Description |
---|---|
class |
TriXWriter
An implementation of the RDFWriter interface that writes RDF documents in
TriX format.
|
Modifier and Type | Method and Description |
---|---|
RDFWriter |
TriXWriterFactory.getWriter(OutputStream out)
Returns a new instance of
TriXWriter . |
RDFWriter |
TriXWriterFactory.getWriter(OutputStream out,
String baseURI)
Returns a new instance of
TriXWriter . |
RDFWriter |
TriXWriterFactory.getWriter(Writer writer)
Returns a new instance of
TriXWriter . |
RDFWriter |
TriXWriterFactory.getWriter(Writer writer,
String baseURI)
Returns a new instance of
TriXWriter . |
Modifier and Type | Class and Description |
---|---|
class |
TurtleWriter
An implementation of the RDFWriter interface that writes RDF documents in Turtle format.
|
Modifier and Type | Method and Description |
---|---|
RDFWriter |
TurtleWriterFactory.getWriter(OutputStream out)
Returns a new instance of
TurtleWriter . |
RDFWriter |
TurtleWriterFactory.getWriter(OutputStream out,
String baseURI) |
RDFWriter |
TurtleWriterFactory.getWriter(Writer writer)
Returns a new instance of
TurtleWriter . |
RDFWriter |
TurtleWriterFactory.getWriter(Writer writer,
String baseURI) |
Copyright © 2015-2020 Eclipse Foundation. All Rights Reserved.