Package org.apache.jena.riot.out.quoted
Class QuotedStringOutputBase
- java.lang.Object
-
- org.apache.jena.riot.out.quoted.QuotedStringOutputBase
-
- All Implemented Interfaces:
QuotedStringOutput
- Direct Known Subclasses:
QuotedStringOutputNT,QuotedStringOutputTTL
public class QuotedStringOutputBase extends java.lang.Object implements QuotedStringOutput
Quoted string output - single line, settable quote character and char space.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description chargetQuoteChar()voidwriteStr(org.apache.jena.atlas.io.AWriter writer, java.lang.String str)Write a string on one linevoidwriteStrMultiLine(org.apache.jena.atlas.io.AWriter writer, java.lang.String str)Write a string, possible on several lines
-
-
-
Method Detail
-
getQuoteChar
public char getQuoteChar()
- Specified by:
getQuoteCharin interfaceQuotedStringOutput
-
writeStr
public void writeStr(org.apache.jena.atlas.io.AWriter writer, java.lang.String str)Description copied from interface:QuotedStringOutputWrite a string on one line- Specified by:
writeStrin interfaceQuotedStringOutput
-
writeStrMultiLine
public void writeStrMultiLine(org.apache.jena.atlas.io.AWriter writer, java.lang.String str)Description copied from interface:QuotedStringOutputWrite a string, possible on several lines- Specified by:
writeStrMultiLinein interfaceQuotedStringOutput
-
-