Uses of Class
com.google.gwt.json.client.JSONValue
-
Packages that use JSONValue Package Description 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 Modifier and Type Class Description classJSONArrayRepresents an array ofJSONValueobjects.classJSONBooleanRepresents a JSON boolean value.classJSONNullRepresents the JSONnullvalue.classJSONNumberRepresents a JSON number.classJSONObjectRepresents a JSON object.classJSONStringRepresents a JSON string.Methods in com.google.gwt.json.client that return JSONValue Modifier and Type Method Description JSONValueJSONArray. get(int index)Returns the value at the specified index position.JSONValueJSONObject. get(java.lang.String key)Gets the JSONValue associated with the specified property.static JSONValueJSONParser. parse(java.lang.String jsonString)Deprecated.static JSONValueJSONParser. parseLenient(java.lang.String jsonString)Deprecated.static JSONValueJSONParser. parseStrict(java.lang.String jsonString)Evaluates a JSON string and returns its JSONValue representation.JSONValueJSONObject. put(java.lang.String key, JSONValue jsonValue)Assign the specified property to the specified value in this JSONObject.JSONValueJSONArray. 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 Modifier and Type Method Description JSONValueJSONObject. put(java.lang.String key, JSONValue jsonValue)Assign the specified property to the specified value in this JSONObject.JSONValueJSONArray. set(int index, JSONValue value)Sets the specified index to the given value.
-