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

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

Introduction

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

The text is from its open source code.

Subclass

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

Constructor

JSONArray()
Creates an empty JSONArray.
JSONArray(JavaScriptObject arr)
Creates a new JSONArray from the supplied JavaScriptObject representing a JavaScript array.

Method

JSONValueget(int index)
Returns the value at the specified index position.
JavaScriptObjectgetJavaScriptObject()
Returns the underlying JavaScript array that this object wraps.
JSONArrayisArray()
Returns this, as this is a JSONArray.
JSONValueset(int index, JSONValue value)
Sets the specified index to the given value.
intsize()
Returns the number of elements in this array.
StringtoString()
Create the JSON encoded string representation of this JSONArray instance.