Package org.apache.jena.riot.writer
Class WriterTriX
- java.lang.Object
-
- org.apache.jena.riot.writer.WriterTriX
-
- All Implemented Interfaces:
WriterDatasetRIOT,WriterGraphRIOT
public class WriterTriX extends java.lang.Object implements WriterDatasetRIOT, WriterGraphRIOT
Write TriX. SeeTriXfor details. The writer defers toStreamWriterTriX.- See Also:
TriX,ReaderTriX,StreamWriterTriX
-
-
Constructor Summary
Constructors Constructor Description WriterTriX()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LanggetLang()voidwrite(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidwrite(java.io.OutputStream out, DatasetGraph datasetGraph, 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 formatvoidwrite(java.io.Writer out, DatasetGraph datasetGraph, 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 Lang getLang()
- Specified by:
getLangin interfaceWriterDatasetRIOT- Specified by:
getLangin interfaceWriterGraphRIOT
-
write
public void write(java.io.OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, java.lang.String baseURI, Context context)- Specified by:
writein interfaceWriterDatasetRIOT- Parameters:
out- OutputStreamdatasetGraph- DatasetGraph 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.Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, java.lang.String baseURI, Context context)Description copied from interface:WriterDatasetRIOTUse of Writer is discouraged - let the serializer manage character sets in accordance with the format- Specified by:
writein interfaceWriterDatasetRIOT- Parameters:
out- WriterdatasetGraph- DatasetGraph 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- 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)
-
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- 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)
-
-