| |
|
| java.lang.Object org.openrdf.rio.n3.N3Writer
N3Writer | public class N3Writer implements RDFWriter(Code) | | An implementation of the RDFWriter interface that writes RDF documents in N3
format. Note: the current implementation simply wraps a
TurtleWriter and writes documents in Turtle format, which is a subset of N3.
|
Constructor Summary | |
public | N3Writer(OutputStream out) Creates a new N3Writer that will write to the supplied OutputStream. | public | N3Writer(Writer writer) Creates a new N3Writer that will write to the supplied Writer. |
N3Writer | public N3Writer(OutputStream out)(Code) | | Creates a new N3Writer that will write to the supplied OutputStream.
Parameters: out - The OutputStream to write the N3 document to. |
N3Writer | public N3Writer(Writer writer)(Code) | | Creates a new N3Writer that will write to the supplied Writer.
Parameters: writer - The Writer to write the N3 document to. |
|
|
|