| |
|
| java.lang.Object org.openrdf.rio.turtle.TurtleWriter
All known Subclasses: org.openrdf.rio.trig.TriGWriter,
TurtleWriter | public class TurtleWriter implements RDFWriter(Code) | | An implementation of the RDFWriter interface that writes RDF documents in
Turtle format. The Turtle format is defined in in this document.
|
Constructor Summary | |
public | TurtleWriter(OutputStream out) Creates a new TurtleWriter that will write to the supplied OutputStream. | public | TurtleWriter(Writer writer) Creates a new TurtleWriter that will write to the supplied Writer. |
lastWrittenPredicate | protected URI lastWrittenPredicate(Code) | | |
namespaceTable | protected Map<String, String> namespaceTable(Code) | | Table mapping namespace names (key) to namespace prefixes (value).
|
statementClosed | protected boolean statementClosed(Code) | | Flag indicating whether the last written statement has been closed.
|
writer | protected IndentingWriter writer(Code) | | |
writingStarted | protected boolean writingStarted(Code) | | |
TurtleWriter | public TurtleWriter(OutputStream out)(Code) | | Creates a new TurtleWriter that will write to the supplied OutputStream.
Parameters: out - The OutputStream to write the Turtle document to. |
TurtleWriter | public TurtleWriter(Writer writer)(Code) | | Creates a new TurtleWriter that will write to the supplied Writer.
Parameters: writer - The Writer to write the Turtle document to. |
closePreviousStatement | protected void closePreviousStatement() throws IOException(Code) | | |
|
|
|