Uses of Class
com.restfb.json.JsonObject

Packages that use JsonObject
com.restfb.json Repackaging of the json.org reference implementation. 
com.restfb.types Default implementations of Facebook Graph API Objects
 

Uses of JsonObject in com.restfb.json
 

Methods in com.restfb.json that return JsonObject
 JsonObject JsonObject.accumulate(String key, Object value)
          Accumulate values under a key.
 JsonObject JsonObject.append(String key, Object value)
          Append values to the array under a key.
 JsonObject JsonArray.getJsonObject(int index)
          Get the JsonObject associated with an index.
 JsonObject JsonObject.getJsonObject(String key)
          Get the JsonObject value associated with a key.
 JsonObject JsonArray.optJsonObject(int index)
          Get the optional JsonObject associated with an index.
 JsonObject JsonObject.optJsonObject(String key)
          Get an optional JsonObject associated with a key.
 JsonObject JsonObject.put(String key, boolean value)
          Put a key/boolean pair in the JsonObject.
 JsonObject JsonObject.put(String key, Collection<?> value)
          Put a key/value pair in the JsonObject, where the value will be a JsonArray which is produced from a Collection.
 JsonObject JsonObject.put(String key, double value)
          Put a key/double pair in the JsonObject.
 JsonObject JsonObject.put(String key, int value)
          Put a key/int pair in the JsonObject.
 JsonObject JsonObject.put(String key, long value)
          Put a key/long pair in the JsonObject.
 JsonObject JsonObject.put(String key, Map<?,?> value)
          Put a key/value pair in the JsonObject, where the value will be a JsonObject which is produced from a Map.
 JsonObject JsonObject.put(String key, Object value)
          Put a key/value pair in the JsonObject.
 JsonObject JsonObject.putOnce(String key, Object value)
          Put a key/value pair in the JsonObject, but only if the key and the value are both non-null, and only if there is not already a member with that name.
 JsonObject JsonObject.putOpt(String key, Object value)
          Put a key/value pair in the JsonObject, but only if the key and the value are both non-null.
 JsonObject JsonArray.toJsonObject(JsonArray names)
          Produce a JsonObject by combining a JsonArray of names with the values of this JsonArray.
 

Methods in com.restfb.json with parameters of type JsonObject
static String[] JsonObject.getNames(JsonObject jo)
          Get an array of field names from a JsonObject.
 

Constructors in com.restfb.json with parameters of type JsonObject
JsonObject(JsonObject jo, String[] names)
          Construct a JsonObject from a subset of another JsonObject.
 

Uses of JsonObject in com.restfb.types
 

Methods in com.restfb.types that return types with arguments of type JsonObject
 List<JsonObject> Insight.getValues()
          Data for this Insight as a list of JsonObject because its structure can vary depending on which type of Insight you're looking at.
 



RestFB 1.6.8. Copyright © 2010-2011 Mark Allen. All Rights Reserved.