Package org.eclipse.rdf4j.rio.ntriples
Class NTriplesWriterFactory
- java.lang.Object
-
- org.eclipse.rdf4j.rio.ntriples.NTriplesWriterFactory
-
- All Implemented Interfaces:
RDFWriterFactory
public class NTriplesWriterFactory extends java.lang.Object implements RDFWriterFactory
AnRDFWriterFactoryfor N-Triples writers.
-
-
Constructor Summary
Constructors Constructor Description NTriplesWriterFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RDFFormatgetRDFFormat()ReturnsRDFFormat.NTRIPLES.RDFWritergetWriter(java.io.OutputStream out)Returns a new instance ofNTriplesWriter.RDFWritergetWriter(java.io.OutputStream out, java.lang.String baseURI)Returns an RDFWriter instance that will write to the supplied output stream.RDFWritergetWriter(java.io.Writer writer)Returns a new instance ofNTriplesWriter.RDFWritergetWriter(java.io.Writer writer, java.lang.String baseURI)Returns an RDFWriter instance that will write to the supplied writer.
-
-
-
Method Detail
-
getRDFFormat
public RDFFormat getRDFFormat()
ReturnsRDFFormat.NTRIPLES.- Specified by:
getRDFFormatin interfaceRDFWriterFactory
-
getWriter
public RDFWriter getWriter(java.io.OutputStream out)
Returns a new instance ofNTriplesWriter.- Specified by:
getWriterin interfaceRDFWriterFactory- Parameters:
out- The OutputStream to write the RDF to.
-
getWriter
public RDFWriter getWriter(java.io.OutputStream out, java.lang.String baseURI)
Description copied from interface:RDFWriterFactoryReturns an RDFWriter instance that will write to the supplied output stream. Using the supplied baseURI to relativize IRIs to relative IRIs.- Specified by:
getWriterin interfaceRDFWriterFactory- Parameters:
out- The OutputStream to write the RDF to.baseURI- The URI associated with the data in the InputStream.
-
getWriter
public RDFWriter getWriter(java.io.Writer writer)
Returns a new instance ofNTriplesWriter.- Specified by:
getWriterin interfaceRDFWriterFactory- Parameters:
writer- The Writer to write the RDF to.
-
getWriter
public RDFWriter getWriter(java.io.Writer writer, java.lang.String baseURI)
Description copied from interface:RDFWriterFactoryReturns an RDFWriter instance that will write to the supplied writer. Using the supplied baseURI to relativize IRIs to relative IRIs. (Optional operation)- Specified by:
getWriterin interfaceRDFWriterFactory- Parameters:
writer- The Writer to write the RDF to.baseURI- The URI associated with the data in the InputStream.
-
-