Class TurtleWriterBase

java.lang.Object
org.apache.jena.riot.writer.WriterGraphRIOTBase
org.apache.jena.riot.writer.TurtleWriterBase
All Implemented Interfaces:
WriterGraphRIOT
Direct Known Subclasses:
TurtleWriter, TurtleWriterBlocks, TurtleWriterFlat

public abstract class TurtleWriterBase extends WriterGraphRIOTBase
  • Constructor Details

    • TurtleWriterBase

      public TurtleWriterBase()
  • Method Details

    • getLang

      public Lang getLang()
    • write

      public void write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, 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
      Specified by:
      write in class WriterGraphRIOTBase
      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(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context)
      Specified by:
      write in interface WriterGraphRIOT
      Specified by:
      write in class WriterGraphRIOTBase
      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)