Uses of Interface
com.google.gwt.typedarrays.shared.Int16Array
-
Packages that use Int16Array Package Description com.google.gwt.typedarrays.client com.google.gwt.typedarrays.server com.google.gwt.typedarrays.shared -
-
Uses of Int16Array in com.google.gwt.typedarrays.client
Classes in com.google.gwt.typedarrays.client that implement Int16Array Modifier and Type Class Description class
Int16ArrayNative
JS native implementation ofInt16Array
.Methods in com.google.gwt.typedarrays.client that return Int16Array Modifier and Type Method Description Int16Array
NoSupportImpl. createInt16Array(ArrayBuffer buffer, int byteOffset, int length)
Int16Array
Int16ArrayNative. subarray(int begin)
Int16Array
Int16ArrayNative. subarray(int begin, int end)
Methods in com.google.gwt.typedarrays.client with parameters of type Int16Array Modifier and Type Method Description void
Int16ArrayNative. set(Int16Array array)
void
Int16ArrayNative. set(Int16Array array, int offset)
static void
JsUtils. set(Int16Array dest, JsArrayInteger array)
static void
JsUtils. set(Int16Array dest, JsArrayInteger array, int offset)
-
Uses of Int16Array in com.google.gwt.typedarrays.server
Classes in com.google.gwt.typedarrays.server that implement Int16Array Modifier and Type Class Description class
Int16ArrayImpl
Pure Java implementation ofInt16Array
.Methods in com.google.gwt.typedarrays.server that return Int16Array Modifier and Type Method Description Int16Array
JavaImpl. createInt16Array(ArrayBuffer buffer, int byteOffset, int length)
Int16Array
Int16ArrayImpl. subarray(int begin)
Int16Array
Int16ArrayImpl. subarray(int begin, int end)
Methods in com.google.gwt.typedarrays.server with parameters of type Int16Array Modifier and Type Method Description void
Int16ArrayImpl. set(Int16Array array)
void
Int16ArrayImpl. set(Int16Array array, int offset)
-
Uses of Int16Array in com.google.gwt.typedarrays.shared
Methods in com.google.gwt.typedarrays.shared that return Int16Array Modifier and Type Method Description static Int16Array
TypedArrays. createInt16Array(int length)
static Int16Array
TypedArrays. createInt16Array(ArrayBuffer buffer)
Create aInt16Array
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 Int16Array
TypedArrays. createInt16Array(ArrayBuffer buffer, int byteOffset)
Create aInt16Array
instance onbuffer
, starting atbyteOffset
into the buffer, continuing to the end of the buffer (which must be an integral number of elements).static Int16Array
TypedArrays. createInt16Array(ArrayBuffer buffer, int byteOffset, int length)
Create aInt16Array
instance onbuffer
, starting atbyteOffset
into the buffer, continuing forlength
elements.Int16Array
TypedArrays.Impl. createInt16Array(int length)
Int16Array
TypedArrays.Impl. createInt16Array(short[] array)
Int16Array
TypedArrays.Impl. createInt16Array(ArrayBuffer buffer)
Int16Array
TypedArrays.Impl. createInt16Array(ArrayBuffer buffer, int byteOffset)
abstract Int16Array
TypedArrays.Impl. createInt16Array(ArrayBuffer buffer, int byteOffset, int length)
Int16Array
Int16Array. subarray(int begin)
Create a new view from the same array, fromoffset
to the end of this view.Int16Array
Int16Array. 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 Int16Array Modifier and Type Method Description void
Int16Array. set(Int16Array array)
Set multiple elements in this view from another view, storing starting at 0.void
Int16Array. set(Int16Array array, int offset)
Set multiple elements in this view from another view, storing starting at the requested offset.
-