Package org.apache.jena.riot.out.quoted
Interface QuotedStringOutput
-
- All Known Implementing Classes:
QuotedStringOutputBase,QuotedStringOutputNT,QuotedStringOutputTTL,QuotedStringOutputTTL_MultiLine
public interface QuotedStringOutputInterface for writing quoted strings for Turtle, TriG, N-triples and N-Quads
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description chargetQuoteChar()voidwriteStr(org.apache.jena.atlas.io.AWriter writer, java.lang.String s)Write a string on one linevoidwriteStrMultiLine(org.apache.jena.atlas.io.AWriter writer, java.lang.String s)Write a string, possible on several lines
-
-
-
Method Detail
-
getQuoteChar
char getQuoteChar()
-
writeStr
void writeStr(org.apache.jena.atlas.io.AWriter writer, java.lang.String s)Write a string on one line
-
writeStrMultiLine
void writeStrMultiLine(org.apache.jena.atlas.io.AWriter writer, java.lang.String s)Write a string, possible on several lines
-
-