java.lang.Object
org.apache.jena.riot.writer.WriterGraphRIOTBase
- All Implemented Interfaces:
- WriterGraphRIOT
- Direct Known Subclasses:
- AdapterRDFWriter,- NTriplesWriter,- RDFJSONWriter,- TurtleWriterBase
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionabstract voidwrite(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) abstract voidwrite(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) Use of Writer is discouraged - let the serializer manage character sets in accordance with the formatMethods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.jena.riot.WriterGraphRIOTgetLang
- 
Constructor Details- 
WriterGraphRIOTBasepublic WriterGraphRIOTBase()
 
- 
- 
Method Details- 
writepublic abstract void write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) Description copied from interface:WriterGraphRIOTUse of Writer is discouraged - let the serializer manage character sets in accordance with the format- Specified by:
- writein 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)
 
- 
writepublic abstract void write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) - Specified by:
- writein 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)
 
 
-