Package org.apache.jena.riot.thrift
Class WriterGraphThrift
- java.lang.Object
-
- org.apache.jena.riot.thrift.WriterGraphThrift
-
- All Implemented Interfaces:
WriterGraphRIOT
public class WriterGraphThrift extends java.lang.Object implements WriterGraphRIOT
Write a graph as RDF Thrift
-
-
Constructor Summary
Constructors Constructor Description WriterGraphThrift(RDFFormat fmt)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Lang
getLang()
void
write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)
void
write(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
-
-
-
Constructor Detail
-
WriterGraphThrift
public WriterGraphThrift(RDFFormat fmt)
-
-
Method Detail
-
getLang
public Lang getLang()
- Specified by:
getLang
in interfaceWriterGraphRIOT
-
write
public void write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)
Description copied from interface:WriterGraphRIOT
Use of Writer is discouraged - let the serializer manage character sets in accordance with the format- Specified by:
write
in 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 void write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)
- Specified by:
write
in 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)
-
-