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 classUint8ArrayNativeJS native implementation ofUint8Arrayand, where natively supported,Uint8ClampedArray.classUint8ClampedArrayNativeEmulEmulated version ofUint8ClampedArraythat is implemented using aUint8Array.Methods in com.google.gwt.typedarrays.client that return Uint8Array Modifier and Type Method Description Uint8ArrayNoSupportImpl. 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 voidJsUtils. set(Uint8Array dest, JsArrayInteger array)static voidJsUtils. set(Uint8Array dest, JsArrayInteger array, int offset)voidUint8ArrayNative. set(Uint8Array array)voidUint8ArrayNative. set(Uint8Array array, int offset)voidUint8ClampedArrayNativeEmul. set(Uint8Array array)voidUint8ClampedArrayNativeEmul. 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 classUint8ArrayImplPure Java implementation ofUint8Array.classUint8ClampedArrayImplPure Java implementation ofUint8ClampedArray.Methods in com.google.gwt.typedarrays.server that return Uint8Array Modifier and Type Method Description Uint8ArrayJavaImpl. createUint8Array(ArrayBuffer buffer, int byteOffset, int length)Uint8ArrayUint8ArrayImpl. subarray(int begin)Uint8ArrayUint8ArrayImpl. subarray(int begin, int end)Methods in com.google.gwt.typedarrays.server with parameters of type Uint8Array Modifier and Type Method Description voidUint8ArrayImpl. set(Uint8Array array)voidUint8ArrayImpl. 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 interfaceUint8ClampedArrayA view representing anArrayBufferas 8-bit unsigned integers.Methods in com.google.gwt.typedarrays.shared that return Uint8Array Modifier and Type Method Description static Uint8ArrayTypedArrays. createUint8Array(int length)static Uint8ArrayTypedArrays. createUint8Array(ArrayBuffer buffer)Create aUint8Arrayinstance onbuffer, starting at starting at the beginning of the buffer and continuing to the end (which must be an integral number of elements).static Uint8ArrayTypedArrays. createUint8Array(ArrayBuffer buffer, int byteOffset)Create aUint8Arrayinstance onbuffer, starting atbyteOffsetinto the buffer, continuing to the end of the buffer.static Uint8ArrayTypedArrays. createUint8Array(ArrayBuffer buffer, int byteOffset, int length)Create aUint8Arrayinstance onbuffer, starting atbyteOffsetinto the buffer, continuing forlengthelements.Uint8ArrayTypedArrays.Impl. createUint8Array(int length)Uint8ArrayTypedArrays.Impl. createUint8Array(short[] array)Uint8ArrayTypedArrays.Impl. createUint8Array(ArrayBuffer buffer)Uint8ArrayTypedArrays.Impl. createUint8Array(ArrayBuffer buffer, int byteOffset)abstract Uint8ArrayTypedArrays.Impl. createUint8Array(ArrayBuffer buffer, int byteOffset, int length)Uint8ArrayUint8Array. subarray(int begin)Create a new view from the same array, fromoffsetto the end of this view.Uint8ArrayUint8Array. subarray(int begin, int end)Create a new view from the same array, fromoffsetto (but not including)endin this view.Methods in com.google.gwt.typedarrays.shared with parameters of type Uint8Array Modifier and Type Method Description voidUint8Array. set(Uint8Array array)Set multiple elements in this view from another view, storing starting at 0.voidUint8Array. set(Uint8Array array, int offset)Set multiple elements in this view from another view, storing starting at the requested offset.
-