Class WriterGraphThrift

  • All Implemented Interfaces:
    WriterGraphRIOT

    public class WriterGraphThrift
    extends java.lang.Object
    implements WriterGraphRIOT
    Write a graph as RDF Thrift
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Lang getLang()  
      void write​(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)  
      void write​(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)
      Use of Writer is discouraged - let the serializer manage character sets in accordance with the format
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • WriterGraphThrift

        public WriterGraphThrift​(RDFFormat fmt)
    • Method Detail

      • write

        public void write​(java.io.Writer out,
                          Graph graph,
                          PrefixMap prefixMap,
                          java.lang.String baseURI,
                          Context context)
        Description copied from interface: WriterGraphRIOT
        Use of Writer is discouraged - let the serializer manage character sets in accordance with the format
        Specified by:
        write in interface WriterGraphRIOT
        Parameters:
        out - Writer
        graph - Graph to be written
        prefixMap - PrefixMap - maybe null (default should be to use the prefix mapping from the Graph)
        baseURI - base URI - may be null for "none"
        context - Context (see specific implementation for details)
      • write

        public void write​(java.io.OutputStream out,
                          Graph graph,
                          PrefixMap prefixMap,
                          java.lang.String baseURI,
                          Context context)
        Specified by:
        write in interface WriterGraphRIOT
        Parameters:
        out - OutputStream
        graph - Graph to be written
        prefixMap - PrefixMap - maybe null (default should be to use the prefix mapping from the Graph)
        baseURI - base URI - may be null for "none"
        context - Context (see specific implementation for details)