org.apache.jena.riot.writer
Class NTriplesWriter

java.lang.Object
  extended by org.apache.jena.riot.writer.WriterGraphRIOTBase
      extended by org.apache.jena.riot.writer.NTriplesWriter
All Implemented Interfaces:
WriterGraphRIOT

public class NTriplesWriter
extends WriterGraphRIOTBase


Constructor Summary
NTriplesWriter()
           
NTriplesWriter(CharSpace charSpace)
           
 
Method Summary
 Lang getLang()
           
 void write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
static void write(OutputStream out, Iterator<Triple> iter)
           
static void write(OutputStream out, Iterator<Triple> iter, CharSpace charSpace)
           
 void write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
          Use of Writer is discouraged - let the serializer manage character sets in accordance with the format
static void write(Writer out, Iterator<Triple> iter)
           
static void write(Writer out, Iterator<Triple> iter, CharSpace charSpace)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NTriplesWriter

public NTriplesWriter()

NTriplesWriter

public NTriplesWriter(CharSpace charSpace)
Method Detail

write

public static void write(OutputStream out,
                         Iterator<Triple> iter)

write

public static void write(OutputStream out,
                         Iterator<Triple> iter,
                         CharSpace charSpace)

write

public static void write(Writer out,
                         Iterator<Triple> iter)

write

public static void write(Writer out,
                         Iterator<Triple> iter,
                         CharSpace charSpace)

getLang

public Lang getLang()

write

public void write(Writer out,
                  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 prefixmapping from the Graph)
baseURI - base URI - may be null for "none"
context - Context (see specific implementation for details)

write

public void write(OutputStream out,
                  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 prefixmapping from the Graph)
baseURI - base URI - may be null for "none"
context - Context (see specific implementation for details)


Licenced under the Apache License, Version 2.0