Package org.apache.jena.riot.adapters
Class AdapterRDFWriter
- java.lang.Object
-
- org.apache.jena.riot.writer.WriterGraphRIOTBase
-
- org.apache.jena.riot.adapters.AdapterRDFWriter
-
- All Implemented Interfaces:
WriterGraphRIOT
- Direct Known Subclasses:
RDFXMLAbbrevWriter,RDFXMLPlainWriter
public abstract class AdapterRDFWriter extends WriterGraphRIOTBase
Adapter providing RIOT interfaceWriterGraphRIOTover an old-style JenaRDFWriterI. Subclasses of this class are used for RDF/XML (basic and abbreviated) in RIOT.See
RDFWriterRIOTfor the class plugged into RIOT that provides theRDFWriterIinterface to Jena core operations. It isRDFWriterIover aWriterGraphRIOT.
-
-
Constructor Summary
Constructors Constructor Description AdapterRDFWriter()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract LanggetLang()voidwrite(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)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
-
-
-
Method Detail
-
getLang
public abstract Lang getLang()
-
write
public 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- Specified by:
writein classWriterGraphRIOTBase- 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 void write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)- Specified by:
writein interfaceWriterGraphRIOT- Specified by:
writein classWriterGraphRIOTBase- 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)
-
-