public class N3Writer extends Object implements RDFWriter
TurtleWriter
and writes documents in Turtle format, which is a subset of N3.Constructor and Description |
---|
N3Writer(OutputStream out)
Creates a new N3Writer that will write to the supplied OutputStream.
|
N3Writer(OutputStream out,
ParsedIRI baseIRI)
Creates a new N3Writer that will write to the supplied OutputStream.
|
N3Writer(Writer writer)
Creates a new N3Writer that will write to the supplied Writer.
|
N3Writer(Writer writer,
ParsedIRI baseIRI)
Creates a new N3Writer that will write to the supplied Writer.
|
Modifier and Type | Method and Description |
---|---|
void |
endRDF()
Signals the end of the RDF data.
|
Optional<OutputStream> |
getOutputStream()
Gets the
OutputStream this writer writes to, if it uses one. |
RDFFormat |
getRDFFormat()
Gets the RDF format that this RDFWriter uses.
|
Collection<RioSetting<?>> |
getSupportedSettings() |
WriterConfig |
getWriterConfig()
Retrieves the current writer configuration as a single object.
|
void |
handleComment(String comment)
Handles a comment.
|
void |
handleNamespace(String prefix,
String name)
Handles a namespace declaration/definition.
|
void |
handleStatement(Statement st)
Handles a statement.
|
<T> RDFWriter |
set(RioSetting<T> setting,
T value)
Set a setting on the writer, and return this writer object to allow chaining.
|
RDFWriter |
setWriterConfig(WriterConfig config)
Sets all supplied writer configuration options.
|
void |
startRDF()
Signals the start of the RDF data.
|
public N3Writer(OutputStream out)
out
- The OutputStream to write the N3 document to.public N3Writer(OutputStream out, ParsedIRI baseIRI)
out
- The OutputStream to write the N3 document to.baseIRI
- used to relativize IRIs to relative IRIs.public N3Writer(Writer writer)
writer
- The Writer to write the N3 document to.public RDFFormat getRDFFormat()
RDFWriter
getRDFFormat
in interface RDFWriter
public RDFWriter setWriterConfig(WriterConfig config)
RDFWriter
setWriterConfig
in interface RDFWriter
config
- a writer configuration object.public WriterConfig getWriterConfig()
RDFWriter
getWriterConfig
in interface RDFWriter
public Collection<RioSetting<?>> getSupportedSettings()
getSupportedSettings
in interface RDFWriter
RioSetting
s that are supported by this RDFWriter.public <T> RDFWriter set(RioSetting<T> setting, T value)
RDFWriter
public void startRDF() throws RDFHandlerException
RDFHandler
startRDF
in interface RDFHandler
RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.public void endRDF() throws RDFHandlerException
RDFHandler
endRDF
in interface RDFHandler
RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.public void handleNamespace(String prefix, String name) throws RDFHandlerException
RDFHandler
handleNamespace
in interface RDFHandler
prefix
- The prefix for the namespace, or an empty string in case of a default namespace.name
- The URI that the prefix maps to.RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.public void handleStatement(Statement st) throws RDFHandlerException
RDFHandler
handleStatement
in interface RDFHandler
st
- The statement.RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.public void handleComment(String comment) throws RDFHandlerException
RDFHandler
handleComment
in interface RDFHandler
comment
- The comment.RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.public Optional<OutputStream> getOutputStream()
RDFWriter
OutputStream
this writer writes to, if it uses one.getOutputStream
in interface RDFWriter
Copyright © 2015-2020 Eclipse Foundation. All Rights Reserved.