org.apache.jena.riot.writer
Class NullWriter

java.lang.Object
  extended by org.apache.jena.riot.writer.NullWriter
All Implemented Interfaces:
WriterDatasetRIOT

public class NullWriter
extends Object
implements WriterDatasetRIOT

Null writer for datasets - can be used for RDF graphs via the adapter in from RiotWriterLib


Field Summary
static WriterDatasetRIOTFactory factory
           
 
Method Summary
 Lang getLang()
           
 void write(OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context)
           
 void write(Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, 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
 

Field Detail

factory

public static WriterDatasetRIOTFactory factory
Method Detail

getLang

public Lang getLang()
Specified by:
getLang in interface WriterDatasetRIOT

write

public void write(OutputStream out,
                  DatasetGraph datasetGraph,
                  PrefixMap prefixMap,
                  String baseURI,
                  Context context)
Specified by:
write in interface WriterDatasetRIOT
Parameters:
out - OutputStream
datasetGraph - DatasetGraph 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(Writer out,
                  DatasetGraph datasetGraph,
                  PrefixMap prefixMap,
                  String baseURI,
                  Context context)
Description copied from interface: WriterDatasetRIOT
Use of Writer is discouraged - let the serializer manage character sets in accordance with the format

Specified by:
write in interface WriterDatasetRIOT
Parameters:
out - Writer
datasetGraph - DatasetGraph 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