Java com.google.gwt.json.client JSONObject fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.json.client JSONObject fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.json.client JSONObject.

The text is from its open source code.

Subclass

com.google.gwt.json.client.JSONObject has subclasses.
Click this link to see all its subclasses.

Constructor

JSONObject()
JSONObject(JavaScriptObject jsValue)
Creates a new JSONObject from the supplied JavaScript value.

Method

booleancontainsKey(String key)
Tests whether or not this JSONObject contains the specified property.
JSONValueget(String key)
Gets the JSONValue associated with the specified property.
JavaScriptObjectgetJavaScriptObject()
Returns the underlying JavaScript object that this object wraps.
JSONObjectisObject()
Returns this, as this is a JSONObject.
SetkeySet()
Returns the set of properties defined on this JSONObject.
JSONValueput(String key, JSONValue jsonValue)
Assign the specified property to the specified value in this JSONObject.
intsize()
Determines the number of properties on this object.
StringtoString()
Converts a JSONObject into a JSON representation that can be used to communicate with a JSON service.