Uses of Class
net.sourceforge.javajson.JsonObject

Packages that use JsonObject
net.sourceforge.javajson   
net.sourceforge.javajson.converter Json conversion utilities. 
net.sourceforge.javajson.parser   
 

Uses of JsonObject in net.sourceforge.javajson
 

Methods in net.sourceforge.javajson that return JsonObject
 JsonObject JsonObject.accumulate(String key, boolean val)
          Accumlates multiple values into an array.
 JsonObject JsonObject.accumulate(String key, double val)
          Accumlates multiple values into an array.
 JsonObject JsonObject.accumulate(String key, float val)
          Accumlates multiple values into an array.
 JsonObject JsonObject.accumulate(String key, int val)
          Accumlates multiple values into an array.
 JsonObject JsonObject.accumulate(String key, JsonArray val)
          Accumlates multiple values into an array.
 JsonObject JsonObject.accumulate(String key, JsonObject val)
          Accumlates multiple values into an array.
 JsonObject JsonObject.accumulate(String key, String val)
          Accumlates multiple values into an array.
 JsonObject JsonValue.getJsonObject()
           
 JsonObject JsonArray.getJsonObject(int index)
           
 JsonObject JsonObject.getJsonObject(String key)
           
static JsonObject JsonObject.parse(InputStream is)
          Parses a string to a json object.
static JsonObject JsonObject.parse(Reader reader)
          Parses a string to a json object.
static JsonObject JsonObject.parse(String input)
          Parses a string to a json object.
 JsonObject JsonObject.put(String key, boolean value)
           
 JsonObject JsonObject.put(String key, double value)
           
 JsonObject JsonObject.put(String key, float value)
           
 JsonObject JsonObject.put(String key, int value)
           
 JsonObject JsonObject.put(String key, JsonArray value)
           
 JsonObject JsonObject.put(String key, JsonObject value)
           
 JsonObject JsonObject.put(String key, long value)
           
 JsonObject JsonObject.put(String key, String value)
           
 

Methods in net.sourceforge.javajson with parameters of type JsonObject
 JsonObject JsonObject.accumulate(String key, JsonObject val)
          Accumlates multiple values into an array.
 JsonArray JsonArray.add(JsonObject value)
           
 boolean JsonObject.isSimilar(JsonObject obj)
          checks that this object contains all fields as passed object.
 JsonObject JsonObject.put(String key, JsonObject value)
           
 void JsonValue.setJsonObject(JsonObject object)
           
 

Constructors in net.sourceforge.javajson with parameters of type JsonObject
JsonValue(JsonObject val)
           
 

Uses of JsonObject in net.sourceforge.javajson.converter
 

Methods in net.sourceforge.javajson.converter that return JsonObject
 JsonObject Mapper.toJson(Object obj)
           
 JsonObject Converter.toJson(Object o)
          Convenience method for converting objects without a predefined mapper.
 JsonObject Mapper.toJson(Object obj, boolean flat)
           
 JsonObject Converter.toJson(Object o, boolean flat)
          Convenience method for converting objects without a predefined mapper.
static JsonObject Utils.toJson(Object obj, Class cls)
          Convers an object to a simple (flat) json object.
protected  JsonObject Mapper.toJson(Object obj, Class cls)
          Maps an object to json based on a class, this method only works when using the default mapper and is meant to be called via convenience method on Converter.
 JsonObject Converter.toJson(Object o, Class cls)
          Convenience method for converting objects without a predefined mapper.
protected  JsonObject Mapper.toJson(Object obj, Class cls, boolean flat)
           
 

Methods in net.sourceforge.javajson.converter with parameters of type JsonObject
 Object Converter.fromJson(JsonObject json)
           
static void Utils.fromJson(Object obj, JsonObject json)
           
static boolean Utils.objectIntoJsonObject(JsonObject obj, String key, Object o)
          Adds known simple types to the json object
 

Uses of JsonObject in net.sourceforge.javajson.parser
 

Methods in net.sourceforge.javajson.parser that return JsonObject
 JsonObject ASTparse.getJsonObject()