Uses of Class
org.directwebremoting.json.types.JsonValue

Packages that use JsonValue
org.directwebremoting.json.types This package includes an implementation of the JSON spec in Java. 
 

Uses of JsonValue in org.directwebremoting.json.types
 

Subclasses of JsonValue in org.directwebremoting.json.types
 class JsonArray
           
 class JsonBoolean
          The Json version of a boolean
 class JsonNull
           
 class JsonNumber
          The Json version of a Number
 class JsonObject
          In official JSON parlance this should be called Object, however this would cause confusion with Object which is auto-imported.
 class JsonString
          The Json version of a String
 

Methods in org.directwebremoting.json.types that return JsonValue
 JsonValue JsonArray.get(int index)
           
 JsonValue JsonObject.get(java.lang.Object key)
           
 JsonValue JsonObject.put(java.lang.String key, JsonValue value)
           
 JsonValue JsonArray.remove(int value)
           
 JsonValue JsonObject.remove(java.lang.Object key)
           
 JsonValue JsonArray.set(int index, JsonValue value)
           
 

Methods in org.directwebremoting.json.types that return types with arguments of type JsonValue
 java.util.Set<java.util.Map.Entry<java.lang.String,JsonValue>> JsonObject.entrySet()
           
 java.util.Iterator<JsonValue> JsonArray.iterator()
           
 java.util.ListIterator<JsonValue> JsonArray.listIterator()
           
 java.util.ListIterator<JsonValue> JsonArray.listIterator(int startIndex)
           
 java.util.List<JsonValue> JsonArray.subList(int startIndex, int endIndex)
           
 java.util.Collection<JsonValue> JsonObject.values()
           
 

Methods in org.directwebremoting.json.types with parameters of type JsonValue
 void JsonArray.add(int index, JsonValue value)
           
 boolean JsonArray.add(JsonValue value)
           
 JsonValue JsonObject.put(java.lang.String key, JsonValue value)
           
 JsonValue JsonArray.set(int index, JsonValue value)
           
 

Method parameters in org.directwebremoting.json.types with type arguments of type JsonValue
 boolean JsonArray.addAll(java.util.Collection<? extends JsonValue> collection)
           
 boolean JsonArray.addAll(int index, java.util.Collection<? extends JsonValue> collection)
           
 void JsonObject.putAll(java.util.Map<? extends java.lang.String,? extends JsonValue> otherMap)
           
 


Copyright ยจ 2008