Java com.google.gwt.typedarrays.client Int32Array fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Method

Int32Arraycreate(ArrayBuffer buffer)
Int32Arraycreate(int[] data)
Create a new ArrayBuffer with enough bytes to hold array.length elements of this typed array, then create a typed array view referring to the full buffer.
Int32Arraycreate(Int32Array array)
Create a new ArrayBuffer with enough bytes to hold array.length elements of this typed array, then create a typed array view referring to the full buffer.
Int32Arraycreate(int size)
Create a new ArrayBuffer with enough bytes to hold length elements of this typed array, then creates a typed array view referring to the full buffer.
Int32Arraycreate(JsArrayInteger data)
Create a new ArrayBuffer with enough bytes to hold array.length elements of this typed array, then create a typed array view referring to the full buffer.
Int32Arraycreate(ArrayBuffer buffer, int byteOffset)
Int32Arraycreate(ArrayBuffer buffer, int byteOffset, int length)
Create a new TypedArray object using the passed ArrayBuffer for its storage.
intget(int index)
Returns the element at the given numeric index.
intgetLength()
The length of the TypedArray in elements, as fixed at construction time.