Uses of Interface
org.apache.jena.atlas.io.AWriter

Packages that use AWriter
org.apache.jena.atlas.io   
org.apache.jena.riot.out   
org.apache.jena.riot.system   
org.apache.jena.riot.writer   
 

Uses of AWriter in org.apache.jena.atlas.io
 

Classes in org.apache.jena.atlas.io that implement AWriter
 class AWriterBase
          Simple abstraction of a string/character output stream
 class IndentedLineBuffer
          IndentLineBuffer is a buffer that records an indent level and uses that to insert a prefix at each line.
 class IndentedWriter
          A writer that records what the current indentation level is, and uses that to insert a prefix at each line.
 class StringWriterI
           
 class Writer2
          A Writer, without the checked exceptions.
 

Methods in org.apache.jena.atlas.io that return AWriter
static AWriter IO.wrap(Writer w)
          Wrap in a general writer interface
static AWriter IO.wrapASCII(OutputStream out)
          Wrap in a general writer interface
static AWriter IO.wrapUTF8(OutputStream out)
          Wrap in a general writer interface
 

Methods in org.apache.jena.atlas.io with parameters of type AWriter
static void IO.close(AWriter resource)
           
static void IO.closeSilent(AWriter resource)
           
static void IO.flush(AWriter out)
           
 

Uses of AWriter in org.apache.jena.riot.out
 

Methods in org.apache.jena.riot.out with parameters of type AWriter
 void NodeFormatterBase.format(AWriter w, Node n)
           
 void NodeFormatter.format(AWriter w, Node n)
           
 void NodeFormatterTTL.formatBNode(AWriter w, Node n)
           
 void NodeFormatterBase.formatBNode(AWriter w, Node n)
           
 void NodeFormatter.formatBNode(AWriter w, Node n)
          Node is guaranteed to be a blank node
 void NodeFormatterNT.formatBNode(AWriter w, String label)
           
 void NodeFormatter.formatBNode(AWriter w, String label)
           
 void NodeFormatterTTL.formatLitDT(AWriter w, String lex, String datatypeURI)
           
 void NodeFormatterNT.formatLitDT(AWriter w, String lex, String datatypeURI)
           
 void NodeFormatter.formatLitDT(AWriter w, String lex, String datatypeURI)
          Literal with datatype, not a simple literal, not an xsd:string (RDF 1.1), no language tag.
 void NodeFormatterBase.formatLiteral(AWriter w, Node n)
           
 void NodeFormatter.formatLiteral(AWriter w, Node n)
          Node is guaranteed to be a literal
 void NodeFormatterNT.formatLitLang(AWriter w, String lex, String langTag)
           
 void NodeFormatter.formatLitLang(AWriter w, String lex, String langTag)
          String with language tag
 void NodeFormatterNT.formatLitString(AWriter w, String lex)
           
 void NodeFormatter.formatLitString(AWriter w, String lex)
          Plain string / xsd:string (RDF 1.1)
 void NodeFormatterBase.formatURI(AWriter w, Node n)
           
 void NodeFormatter.formatURI(AWriter w, Node n)
          Node is guaranteed to be a URI node
 void NodeFormatterTTL.formatURI(AWriter w, String uriStr)
           
 void NodeFormatterNT.formatURI(AWriter w, String uriStr)
           
 void NodeFormatter.formatURI(AWriter w, String uriStr)
           
 void NodeFormatterBase.formatVar(AWriter w, Node n)
           
 void NodeFormatter.formatVar(AWriter w, Node n)
           
 void NodeFormatterNT.formatVar(AWriter w, String name)
           
 void NodeFormatter.formatVar(AWriter w, String name)
           
static int OutputUtils.oneHex(AWriter out, int x, int i)
          Print one hex digit of the number
static void OutputUtils.printHex(AWriter out, int x, int width)
          Print the number x in width hex chars.
static void EscapeStr.stringEsc(AWriter out, String s, boolean singleLineString, boolean asciiOnly)
           
 void EscapeStr.writeStr(AWriter w, String s)
           
 void EscapeStr.writeStrMultiLine(AWriter w, String s)
           
 void EscapeStr.writeURI(AWriter w, String s)
           
 

Uses of AWriter in org.apache.jena.riot.system
 

Methods in org.apache.jena.riot.system with parameters of type AWriter
static StreamRDF StreamRDFLib.writer(AWriter out)
           
static StreamRDF StreamRDFLib.writer(AWriter out, CharSpace charSpace)
           
 

Uses of AWriter in org.apache.jena.riot.writer
 

Constructors in org.apache.jena.riot.writer with parameters of type AWriter
WriterStreamRDFTuples(AWriter w)
          Output tuples, using UTF8 output See StreamRDFLib.writer(java.io.OutputStream) for ways to create a AWriter object.
WriterStreamRDFTuples(AWriter w, CharSpace charSpace)
          Output tuples, choosing ASCII or UTF8 See StreamRDFLib.writer(java.io.OutputStream) for ways to create a AWriter object.
 



Licenced under the Apache License, Version 2.0