Package org.apache.jena.riot.writer
Class WriterGraphRIOTBase
- java.lang.Object
-
- org.apache.jena.riot.writer.WriterGraphRIOTBase
-
- All Implemented Interfaces:
WriterGraphRIOT
- Direct Known Subclasses:
AdapterRDFWriter,NTriplesWriter,RDFJSONWriter,TurtleWriterBase
public abstract class WriterGraphRIOTBase extends java.lang.Object implements WriterGraphRIOT
-
-
Constructor Summary
Constructors Constructor Description WriterGraphRIOTBase()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidwrite(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)abstract voidwrite(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.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.WriterGraphRIOT
getLang
-
-
-
-
Method Detail
-
write
public abstract void write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.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 interfaceWriterGraphRIOT- Parameters:
out- Writergraph- Graph to be writtenprefixMap- 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 abstract void write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)- Specified by:
writein interfaceWriterGraphRIOT- Parameters:
out- OutputStreamgraph- Graph to be writtenprefixMap- 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)
-
-