Package org.eclipse.rdf4j.rio.rdfjson
Class RDFJSONWriterFactory
- java.lang.Object
-
- org.eclipse.rdf4j.rio.rdfjson.RDFJSONWriterFactory
-
- All Implemented Interfaces:
RDFWriterFactory
public class RDFJSONWriterFactory extends Object implements RDFWriterFactory
AnRDFWriterFactory
for RDF/JSON writers.- Author:
- Peter Ansell
-
-
Constructor Summary
Constructors Constructor Description RDFJSONWriterFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RDFFormat
getRDFFormat()
Returns the RDF format for this factory.RDFWriter
getWriter(OutputStream out)
Returns an RDFWriter instance that will write to the supplied output stream.RDFWriter
getWriter(OutputStream out, String baseURI)
Returns an RDFWriter instance that will write to the supplied output stream.RDFWriter
getWriter(Writer writer)
Returns an RDFWriter instance that will write to the supplied writer.RDFWriter
getWriter(Writer writer, String baseURI)
Returns an RDFWriter instance that will write to the supplied writer.
-
-
-
Method Detail
-
getRDFFormat
public RDFFormat getRDFFormat()
Description copied from interface:RDFWriterFactory
Returns the RDF format for this factory.- Specified by:
getRDFFormat
in interfaceRDFWriterFactory
-
getWriter
public RDFWriter getWriter(OutputStream out)
Description copied from interface:RDFWriterFactory
Returns an RDFWriter instance that will write to the supplied output stream.- Specified by:
getWriter
in interfaceRDFWriterFactory
- Parameters:
out
- The OutputStream to write the RDF to.
-
getWriter
public RDFWriter getWriter(OutputStream out, String baseURI)
Description copied from interface:RDFWriterFactory
Returns an RDFWriter instance that will write to the supplied output stream. Using the supplied baseURI to relativize IRIs to relative IRIs.- Specified by:
getWriter
in interfaceRDFWriterFactory
- Parameters:
out
- The OutputStream to write the RDF to.baseURI
- The URI associated with the data in the InputStream.
-
getWriter
public RDFWriter getWriter(Writer writer)
Description copied from interface:RDFWriterFactory
Returns an RDFWriter instance that will write to the supplied writer. (Optional operation)- Specified by:
getWriter
in interfaceRDFWriterFactory
- Parameters:
writer
- The Writer to write the RDF to.
-
getWriter
public RDFWriter getWriter(Writer writer, String baseURI)
Description copied from interface:RDFWriterFactory
Returns an RDFWriter instance that will write to the supplied writer. Using the supplied baseURI to relativize IRIs to relative IRIs. (Optional operation)- Specified by:
getWriter
in interfaceRDFWriterFactory
- Parameters:
writer
- The Writer to write the RDF to.baseURI
- The URI associated with the data in the InputStream.
-
-