|
GWT 2.7.0 | |||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JSONValue | |
---|---|
com.google.gwt.json.client | Classes for parsing and creating JSON encoded values. |
Uses of JSONValue in com.google.gwt.json.client |
---|
Subclasses of JSONValue in com.google.gwt.json.client | |
---|---|
class |
JSONArray
Represents an array of JSONValue objects. |
class |
JSONBoolean
Represents a JSON boolean value. |
class |
JSONNull
Represents the JSON null value. |
class |
JSONNumber
Represents a JSON number. |
class |
JSONObject
Represents a JSON object. |
class |
JSONString
Represents a JSON string. |
Methods in com.google.gwt.json.client that return JSONValue | |
---|---|
JSONValue |
JSONArray.get(int index)
Returns the value at the specified index position. |
JSONValue |
JSONObject.get(java.lang.String key)
Gets the JSONValue associated with the specified property. |
static JSONValue |
JSONParser.parse(java.lang.String jsonString)
Deprecated. use JSONParser.parseStrict(String) or
JSONParser.parseLenient(String) |
static JSONValue |
JSONParser.parseLenient(java.lang.String jsonString)
Evaluates a trusted JSON string and returns its JSONValue representation. |
static JSONValue |
JSONParser.parseStrict(java.lang.String jsonString)
Evaluates a JSON string and returns its JSONValue representation. |
JSONValue |
JSONObject.put(java.lang.String key,
JSONValue jsonValue)
Assign the specified property to the specified value in this JSONObject. |
JSONValue |
JSONArray.set(int index,
JSONValue value)
Sets the specified index to the given value. |
Methods in com.google.gwt.json.client with parameters of type JSONValue | |
---|---|
JSONValue |
JSONObject.put(java.lang.String key,
JSONValue jsonValue)
Assign the specified property to the specified value in this JSONObject. |
JSONValue |
JSONArray.set(int index,
JSONValue value)
Sets the specified index to the given value. |
|
GWT 2.7.0 | |||||||
PREV NEXT | FRAMES NO FRAMES |