Uses of Interface
playn.flash.json.JsonValue

Packages that use JsonValue
playn.flash.json   
playn.flash.json.impl   
 

Uses of JsonValue in playn.flash.json
 

Subinterfaces of JsonValue in playn.flash.json
 interface JsonArray
          Represents a Json array.
 interface JsonBoolean
          Represents a Json boolean.
 interface JsonNull
          Represents the Json null value.
 interface JsonNumber
          Represents a Json number value.
 interface JsonObject
          Represents a Json object.
 interface JsonString
          Represents a Json String value.
 

Methods in playn.flash.json with type parameters of type JsonValue
<T extends JsonValue>
T
JsonArray.get(int index)
           
<T extends JsonValue>
T
JsonObject.get(String key)
           
<T extends JsonValue>
T
JsonFactory.parse(String jsonString)
          Parse a String in JSON format and return a JsonValue of the appropriate type.
 

Methods in playn.flash.json with parameters of type JsonValue
 boolean JsonValue.jsEquals(JsonValue value)
          Equivalent of Javascript '==' operator comparison between two values.
 void JsonObject.put(String key, JsonValue value)
           
 void JsonArray.set(int index, JsonValue value)
           
 

Uses of JsonValue in playn.flash.json.impl
 

Classes in playn.flash.json.impl that implement JsonValue
 class JreJsonArray
          Server-side implementation of JsonArray.
 class JreJsonBoolean
          Server-side implementation of JsonBoolean.
 class JreJsonNull
          Server-side implementation of JsonObject.
 class JreJsonNumber
          Server-side implementation of JsonNumber.
 class JreJsonObject
          Server-side implementation of JsonObject.
 class JreJsonString
          Server-side implementation of JsonString.
 class JreJsonValue
           
 

Methods in playn.flash.json.impl with type parameters of type JsonValue
<T extends JsonValue>
T
JreJsonArray.get(int index)
           
<T extends JsonValue>
T
JreJsonObject.get(String key)
           
static
<T extends JsonValue>
T
JsonUtil.parse(String json)
           
<T extends JsonValue>
T
JreJsonFactory.parse(String jsonString)
           
 

Methods in playn.flash.json.impl with parameters of type JsonValue
 boolean JreJsonString.jsEquals(JsonValue value)
           
 boolean JreJsonObject.jsEquals(JsonValue value)
           
 boolean JreJsonNumber.jsEquals(JsonValue value)
           
 boolean JreJsonNull.jsEquals(JsonValue value)
           
 boolean JreJsonBoolean.jsEquals(JsonValue value)
           
 boolean JreJsonArray.jsEquals(JsonValue value)
           
 void JreJsonObject.put(String key, JsonValue value)
           
 void JreJsonArray.set(int index, JsonValue value)
           
static String JsonUtil.stringify(JsonValue jsonValue)
          Converts a Json Object to Json format.
static String JsonUtil.stringify(JsonValue jsonValue, int spaces)
          Converts a JSO to Json format.
static String JsonUtil.stringify(JsonValue jsonValue, String indent)
          Converts a Json object to Json formatted String.
 



Copyright © 2011. All Rights Reserved.