org.apache.jena.riot.writer
Class WriterDatasetRIOTBase

java.lang.Object
  extended by org.apache.jena.riot.writer.WriterDatasetRIOTBase
All Implemented Interfaces:
WriterDatasetRIOT
Direct Known Subclasses:
JsonLDWriter, NQuadsWriter, TriGWriterBase

public abstract class WriterDatasetRIOTBase
extends Object
implements WriterDatasetRIOT


Constructor Summary
WriterDatasetRIOTBase()
           
 
Method Summary
abstract  void write(OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
abstract  void write(Writer out, DatasetGraph dataset, 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
 
Methods inherited from interface org.apache.jena.riot.WriterDatasetRIOT
getLang
 

Constructor Detail

WriterDatasetRIOTBase

public WriterDatasetRIOTBase()
Method Detail

write

public abstract void write(Writer out,
                           DatasetGraph dataset,
                           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
dataset - 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 abstract void write(OutputStream out,
                           DatasetGraph dataset,
                           PrefixMap prefixMap,
                           String baseURI,
                           Context context)
Specified by:
write in interface WriterDatasetRIOT
Parameters:
out - OutputStream
dataset - 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