Uses of Interface
com.google.gwt.typedarrays.shared.Uint8ClampedArray
-
Packages that use Uint8ClampedArray Package Description com.google.gwt.typedarrays.client com.google.gwt.typedarrays.server com.google.gwt.typedarrays.shared -
-
Uses of Uint8ClampedArray in com.google.gwt.typedarrays.client
Classes in com.google.gwt.typedarrays.client that implement Uint8ClampedArray 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 Uint8ClampedArray Modifier and Type Method Description static Uint8ClampedArray
Uint8ClampedArrayNativeEmul. create(short[] array)
Create aUint8ClampedArray
instance from a short array.static Uint8ClampedArray
Uint8ClampedArrayNativeEmul. create(JsArrayInteger array)
Create aUint8ClampedArray
instance from a JavaScript array containing integers.static Uint8ClampedArray
Uint8ClampedArrayNativeEmul. create(ArrayBuffer buffer, int byteOffset, int length)
Create aUint8ClampedArray
instance on an existingArrayBuffer
.static Uint8ClampedArray
JsUtils. createUint8ClampedArray(JsArrayInteger array)
Uint8ClampedArray
NativeImpl. createUint8ClampedArray(int length)
Uint8ClampedArray
NativeImpl. createUint8ClampedArray(short[] array)
Uint8ClampedArray
NativeImpl. createUint8ClampedArray(ArrayBuffer buffer)
Uint8ClampedArray
NativeImpl. createUint8ClampedArray(ArrayBuffer buffer, int byteOffset)
Uint8ClampedArray
NativeImpl. createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
Uint8ClampedArray
NoSupportImpl. createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
Uint8ClampedArray
Uint8ClampedArrayNativeEmul. subarray(int begin)
Uint8ClampedArray
Uint8ClampedArrayNativeEmul. subarray(int begin, int end)
Methods in com.google.gwt.typedarrays.client with parameters of type Uint8ClampedArray Modifier and Type Method Description static void
JsUtils. set(Uint8ClampedArray dest, JsArrayInteger array)
static void
JsUtils. set(Uint8ClampedArray dest, JsArrayInteger array, int offset)
-
Uses of Uint8ClampedArray in com.google.gwt.typedarrays.server
Classes in com.google.gwt.typedarrays.server that implement Uint8ClampedArray Modifier and Type Class Description class
Uint8ClampedArrayImpl
Pure Java implementation ofUint8ClampedArray
.Methods in com.google.gwt.typedarrays.server that return Uint8ClampedArray Modifier and Type Method Description Uint8ClampedArray
JavaImpl. createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
Uint8ClampedArray
Uint8ClampedArrayImpl. subarray(int begin)
Uint8ClampedArray
Uint8ClampedArrayImpl. subarray(int begin, int end)
-
Uses of Uint8ClampedArray in com.google.gwt.typedarrays.shared
Methods in com.google.gwt.typedarrays.shared that return Uint8ClampedArray Modifier and Type Method Description static Uint8ClampedArray
TypedArrays. createUint8ClampedArray(int length)
static Uint8ClampedArray
TypedArrays. createUint8ClampedArray(ArrayBuffer buffer)
Create aUint8ClampedArray
instance onbuffer
, starting at starting at the beginning of the buffer and continuing to the end.static Uint8ClampedArray
TypedArrays. createUint8ClampedArray(ArrayBuffer buffer, int byteOffset)
Create aUint8ClampedArray
instance onbuffer
, starting atbyteOffset
into the buffer, continuing to the end of the buffer.static Uint8ClampedArray
TypedArrays. createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
Create aUint8ClampedArray
instance onbuffer
, starting atbyteOffset
into the buffer, continuing forlength
elements.Uint8ClampedArray
TypedArrays.Impl. createUint8ClampedArray(int length)
Uint8ClampedArray
TypedArrays.Impl. createUint8ClampedArray(short[] array)
Uint8ClampedArray
TypedArrays.Impl. createUint8ClampedArray(ArrayBuffer buffer)
Uint8ClampedArray
TypedArrays.Impl. createUint8ClampedArray(ArrayBuffer buffer, int byteOffset)
abstract Uint8ClampedArray
TypedArrays.Impl. createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
Uint8ClampedArray
Uint8ClampedArray. subarray(int begin)
Create a new view from the same array, fromoffset
to the end of this view.Uint8ClampedArray
Uint8ClampedArray. subarray(int begin, int end)
Create a new view from the same array, fromoffset
to (but not including)end
in this view.
-