Package org.apache.jena.riot.writer
Class TriGWriterBase
- java.lang.Object
-
- org.apache.jena.riot.writer.WriterDatasetRIOTBase
-
- org.apache.jena.riot.writer.TriGWriterBase
-
- All Implemented Interfaces:
WriterDatasetRIOT
- Direct Known Subclasses:
TriGWriter
,TriGWriterBlocks
,TriGWriterFlat
public abstract class TriGWriterBase extends WriterDatasetRIOTBase
TriG writer base class - ways to invoke a TriG writer
-
-
Constructor Summary
Constructors Constructor Description TriGWriterBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Lang
getLang()
void
write(java.io.OutputStream out, DatasetGraph dsg, PrefixMap prefixMap, java.lang.String baseURI, Context context)
void
write(java.io.Writer out, DatasetGraph dsg, 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()
-
write
public void write(java.io.Writer out, DatasetGraph dsg, PrefixMap prefixMap, java.lang.String baseURI, Context context)
Description copied from interface:WriterDatasetRIOT
Use of Writer is discouraged - let the serializer manage character sets in accordance with the format- Specified by:
write
in interfaceWriterDatasetRIOT
- Specified by:
write
in classWriterDatasetRIOTBase
- Parameters:
out
- Writerdsg
- 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, DatasetGraph dsg, PrefixMap prefixMap, java.lang.String baseURI, Context context)
- Specified by:
write
in interfaceWriterDatasetRIOT
- Specified by:
write
in classWriterDatasetRIOTBase
- Parameters:
out
- OutputStreamdsg
- 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)
-
-