Package org.directwebremoting.json

This package includes an implementation of the JSON spec in Java.

See:
          Description

Class Summary
JsonArray  
JsonBoolean The Json version of a String
JsonHack  
JsonNull  
JsonNumber The Json version of a String
JsonObject In official JSON parlance this should be called Object, however this would cause confusion with Object which is auto-imported.
JsonString The Json version of a String
JsonValue JsonValue allows you to hold any of the JSON types and to get a string version without needing to know what type you have.
 

Exception Summary
InvalidJsonException  
 

Package org.directwebremoting.json Description

This package includes an implementation of the JSON spec in Java.

The JSON spec includes the types object, array, number, string and boolean. We have chosen to use the Java types String and boolean to represent the last 2 of these, and a choice of int, long and double for number. The object and array types are implemented especially by JsonObject and JsonArray.

Author:
Joe Walker [joe at getahead dot ltd dot uk]

Copyright ¬ 2005