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

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

Introduction

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

The text is from its open source code.

Method

Uint8Arraycreate(ArrayBuffer buffer)
Uint8Arraycreate(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.
Uint8Arraycreate(Uint8Array 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.
Uint8Arraycreate(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.
Uint8Arraycreate(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.
Uint8Arraycreate(ArrayBuffer buffer, int byteOffset)
Uint8Arraycreate(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.
voidset(int[] array, int offset)
Set multiple values, reading input values from the array.
voidset(Uint8Array array, int offset)
Set multiple values, reading input values from the array.
voidset(int index, int value)
Sets the element at the given numeric index to the given value.
voidset(JsArrayInteger array, int offset)