java.lang.Object
org.apache.jena.riot.writer.WriterGraphRIOTBase
org.apache.jena.riot.adapters.AdapterRDFWriter
- All Implemented Interfaces:
WriterGraphRIOT
- Direct Known Subclasses:
RDFXMLAbbrevWriter,RDFXMLPlainWriter
Adapter providing RIOT interface
WriterGraphRIOT over an old-style
Jena RDFWriterI. Subclasses of this class are used for RDF/XML
(basic and abbreviated) in RIOT.
See RDFWriterRIOT for the class plugged into RIOT that provides the
RDFWriterI interface to Jena core operations. It is RDFWriterI over
a WriterGraphRIOT.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract LanggetLang()voidwrite(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) 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 format
-
Constructor Details
-
AdapterRDFWriter
public AdapterRDFWriter()
-
-
Method Details
-
getLang
-
write
public 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 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(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, 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)
-