Uses of Interface
com.google.gwt.typedarrays.shared.Uint8Array
-
Packages that use Uint8Array Package Description com.google.gwt.typedarrays.client com.google.gwt.typedarrays.server com.google.gwt.typedarrays.shared -
-
Uses of Uint8Array in com.google.gwt.typedarrays.client
Classes in com.google.gwt.typedarrays.client that implement Uint8Array Modifier and Type Class Description class
Uint8ArrayNative
JS native implementation ofUint8Array
and, where natively supported,Uint8ClampedArray
.class
Uint8ClampedArrayNativeEmul
Emulated version ofUint8ClampedArray
that is implemented using aUint8Array
.Methods in com.google.gwt.typedarrays.client that return Uint8Array Modifier and Type Method Description Uint8Array
NoSupportImpl. createUint8Array(ArrayBuffer buffer, int byteOffset, int length)
Methods in com.google.gwt.typedarrays.client with parameters of type Uint8Array Modifier and Type Method Description static void
JsUtils. set(Uint8Array dest, JsArrayInteger array)
static void
JsUtils. set(Uint8Array dest, JsArrayInteger array, int offset)
void
Uint8ArrayNative. set(Uint8Array array)
void
Uint8ArrayNative. set(Uint8Array array, int offset)
void
Uint8ClampedArrayNativeEmul. set(Uint8Array array)
void
Uint8ClampedArrayNativeEmul. set(Uint8Array array, int offset)
-
Uses of Uint8Array in com.google.gwt.typedarrays.server
Classes in com.google.gwt.typedarrays.server that implement Uint8Array Modifier and Type Class Description class
Uint8ArrayImpl
Pure Java implementation ofUint8Array
.class
Uint8ClampedArrayImpl
Pure Java implementation ofUint8ClampedArray
.Methods in com.google.gwt.typedarrays.server that return Uint8Array Modifier and Type Method Description Uint8Array
JavaImpl. createUint8Array(ArrayBuffer buffer, int byteOffset, int length)
Uint8Array
Uint8ArrayImpl. subarray(int begin)
Uint8Array
Uint8ArrayImpl. subarray(int begin, int end)
Methods in com.google.gwt.typedarrays.server with parameters of type Uint8Array Modifier and Type Method Description void
Uint8ArrayImpl. set(Uint8Array array)
void
Uint8ArrayImpl. set(Uint8Array array, int offset)
-
Uses of Uint8Array in com.google.gwt.typedarrays.shared
Subinterfaces of Uint8Array in com.google.gwt.typedarrays.shared Modifier and Type Interface Description interface
Uint8ClampedArray
A view representing anArrayBuffer
as 8-bit unsigned integers.Methods in com.google.gwt.typedarrays.shared that return Uint8Array Modifier and Type Method Description static Uint8Array
TypedArrays. createUint8Array(int length)
static Uint8Array
TypedArrays. createUint8Array(ArrayBuffer buffer)
Create aUint8Array
instance onbuffer
, starting at starting at the beginning of the buffer and continuing to the end (which must be an integral number of elements).static Uint8Array
TypedArrays. createUint8Array(ArrayBuffer buffer, int byteOffset)
Create aUint8Array
instance onbuffer
, starting atbyteOffset
into the buffer, continuing to the end of the buffer.static Uint8Array
TypedArrays. createUint8Array(ArrayBuffer buffer, int byteOffset, int length)
Create aUint8Array
instance onbuffer
, starting atbyteOffset
into the buffer, continuing forlength
elements.Uint8Array
TypedArrays.Impl. createUint8Array(int length)
Uint8Array
TypedArrays.Impl. createUint8Array(short[] array)
Uint8Array
TypedArrays.Impl. createUint8Array(ArrayBuffer buffer)
Uint8Array
TypedArrays.Impl. createUint8Array(ArrayBuffer buffer, int byteOffset)
abstract Uint8Array
TypedArrays.Impl. createUint8Array(ArrayBuffer buffer, int byteOffset, int length)
Uint8Array
Uint8Array. subarray(int begin)
Create a new view from the same array, fromoffset
to the end of this view.Uint8Array
Uint8Array. subarray(int begin, int end)
Create a new view from the same array, fromoffset
to (but not including)end
in this view.Methods in com.google.gwt.typedarrays.shared with parameters of type Uint8Array Modifier and Type Method Description void
Uint8Array. set(Uint8Array array)
Set multiple elements in this view from another view, storing starting at 0.void
Uint8Array. set(Uint8Array array, int offset)
Set multiple elements in this view from another view, storing starting at the requested offset.
-