This project has retired. For details please refer to its Attic page.

Uses of Class
org.apache.wink.json4j.JSONWriter

Packages that use JSONWriter
org.apache.wink.json4j   
org.apache.wink.json4j.compat.impl   
 

Uses of JSONWriter in org.apache.wink.json4j
 

Subclasses of JSONWriter in org.apache.wink.json4j
 class JSONStringer
          This class implements a JSONSringer, a basic convenience subclass of JSONWriter to allow for generating JSON strings quickly.
 

Methods in org.apache.wink.json4j that return JSONWriter
 JSONWriter JSONWriter.array()
          Open a new JSON Array in the output stream.
 JSONWriter JSONWriter.endArray()
          Method to close the current JSON Array in the stream.
 JSONWriter JSONWriter.endObject()
          Method to close a current JSON object in the stream.
 JSONWriter JSONWriter.flush()
          Method to flush the underlying writer so that all buffered content, if any, is written out.
 JSONWriter JSONWriter.key(String s)
          Place a key in the current JSON Object.
 JSONWriter JSONWriter.object()
          Open a new JSON Object in the output stream.
 JSONWriter JSONWriter.value(boolean b)
          Method to write a boolean to the current writer position.
 JSONWriter JSONWriter.value(double d)
          Method to write a double to the current writer position.
 JSONWriter JSONWriter.value(int i)
          Method to write an int to the current writer position.
 JSONWriter JSONWriter.value(long l)
          Method to write a double to the current writer position.
 JSONWriter JSONWriter.value(Object o)
          Method to write an Object to the current writer position.
 JSONWriter JSONWriter.value(short s)
          Method to write a short to the current writer position.
 

Uses of JSONWriter in org.apache.wink.json4j.compat.impl
 

Fields in org.apache.wink.json4j.compat.impl declared as JSONWriter
protected  JSONWriter ApacheJSONWriterDelegate.delegate
           
 



Copyright © 2009-2012 The Apache Software Foundation. All Rights Reserved.