Example usage for Java com.google.gwt.core.client JsArrayInteger fields, constructors, methods, implement or subclass
The text is from its open source code.
T | cast() A helper method to enable cross-casting from any JavaScriptObject type to any other JavaScriptObject type. |
int | get(int index) Gets the value at a given index. |
int | length() Gets the length of the array. |
void | push(int value) Pushes the given integer onto the end of the array. |
void | set(int index, int value) Sets the value value at a given index. |
void | setLength(int newLength) Reset the length of the array. |
String | toString() Makes a best-effort attempt to get a useful debugging string describing the given JavaScriptObject. |