Uses of Class
org.directwebremoting.json.JsonValue

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

Uses of JsonValue in org.directwebremoting.extend
 

Methods in org.directwebremoting.extend that return JsonValue
 JsonValue InboundVariable.getJsonValue(InboundVariable.OnJsonParseError onError)
          Convert the set of InboundVariables to JSON
 

Uses of JsonValue in org.directwebremoting.json
 

Subclasses of JsonValue in org.directwebremoting.json
 class JsonArray
           
 class JsonBoolean
          The Json version of a String
 class JsonHack
           
 class JsonNull
           
 class JsonNumber
          The Json version of a String
 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 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 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 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 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 ¬ 2005