Java com.google.gwt.core.client JsArrayMixed fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Subclass

com.google.gwt.core.client.JsArrayMixed has subclasses.
Click this link to see all its subclasses.

Method

Tcast()
A helper method to enable cross-casting from any JavaScriptObject type to any other JavaScriptObject type.
booleangetBoolean(int index)
Gets the boolean at a given index.
doublegetNumber(int index)
Gets the double at a given index.
TgetObject(int index)
Gets the JavaScriptObject at a given index.
StringgetString(int index)
Gets the String at a given index.
intlength()
Gets the length of the array.
voidpush(boolean value)
Pushes the given boolean onto the end of the array.
voidpush(double value)
Pushes the given double onto the end of the array.
voidpush(JavaScriptObject value)
Pushes the given JavaScriptObject onto the end of the array.
voidpush(String value)
Pushes the given String onto the end of the array.
voidset(int index, boolean value)
Sets the boolean value at a given index.
voidset(int index, double value)
Sets the double value at a given index.
voidset(int index, JavaScriptObject value)
Sets the object value at a given index.
voidset(int index, String value)
Sets the String value at a given index.