Class N3WriterFactory

    • Constructor Detail

      • N3WriterFactory

        public N3WriterFactory()
    • Method Detail

      • getWriter

        public RDFWriter getWriter​(java.io.OutputStream out)
        Returns a new instance of N3Writer.
        Specified by:
        getWriter in interface RDFWriterFactory
        Parameters:
        out - The OutputStream to write the RDF to.
      • getWriter

        public RDFWriter getWriter​(java.io.OutputStream out,
                                   java.lang.String baseURI)
                            throws java.net.URISyntaxException
        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 interface RDFWriterFactory
        Parameters:
        out - The OutputStream to write the RDF to.
        baseURI - The URI associated with the data in the InputStream.
        Throws:
        java.net.URISyntaxException
      • getWriter

        public RDFWriter getWriter​(java.io.Writer writer)
        Returns a new instance of N3Writer.
        Specified by:
        getWriter in interface RDFWriterFactory
        Parameters:
        writer - The Writer to write the RDF to.
      • getWriter

        public RDFWriter getWriter​(java.io.Writer writer,
                                   java.lang.String baseURI)
                            throws java.net.URISyntaxException
        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 interface RDFWriterFactory
        Parameters:
        writer - The Writer to write the RDF to.
        baseURI - The URI associated with the data in the InputStream.
        Throws:
        java.net.URISyntaxException