Uses of Interface
com.google.gwt.typedarrays.shared.DataView
-
Packages that use DataView Package Description com.google.gwt.typedarrays.client com.google.gwt.typedarrays.server com.google.gwt.typedarrays.shared -
-
Uses of DataView in com.google.gwt.typedarrays.client
Classes in com.google.gwt.typedarrays.client that implement DataView Modifier and Type Class Description class
DataViewNative
JS native implementation ofDataView
.class
DataViewNativeEmul
JS native implementation ofDataView
for platforms with typed array support but missing DataView (ie, Firefox).Methods in com.google.gwt.typedarrays.client that return DataView Modifier and Type Method Description static DataView
DataViewNative. create(ArrayBuffer buffer)
static DataView
DataViewNative. create(ArrayBuffer buffer, int byteOffset)
static DataView
DataViewNative. create(ArrayBuffer buffer, int byteOffset, int byteLength)
static DataView
DataViewNativeEmul. create(ArrayBuffer buffer, int byteOffset, int byteLength)
DataView
NativeImpl. createDataView(ArrayBuffer buffer)
DataView
NativeImpl. createDataView(ArrayBuffer buffer, int byteOffset)
DataView
NativeImpl. createDataView(ArrayBuffer buffer, int byteOffset, int byteLength)
DataView
NoSupportImpl. createDataView(ArrayBuffer buffer, int byteOffset, int byteLength)
-
Uses of DataView in com.google.gwt.typedarrays.server
Classes in com.google.gwt.typedarrays.server that implement DataView Modifier and Type Class Description class
DataViewImpl
Pure Java implementation ofDataView
.Methods in com.google.gwt.typedarrays.server that return DataView Modifier and Type Method Description DataView
JavaImpl. createDataView(ArrayBuffer buffer, int byteOffset, int byteLength)
-
Uses of DataView in com.google.gwt.typedarrays.shared
Methods in com.google.gwt.typedarrays.shared that return DataView Modifier and Type Method Description static DataView
TypedArrays. createDataView(ArrayBuffer buffer)
Create a newDataView
instance on anArrayBuffer
.static DataView
TypedArrays. createDataView(ArrayBuffer buffer, int byteOffset)
static DataView
TypedArrays. createDataView(ArrayBuffer buffer, int byteOffset, int byteLength)
Create a newDataView
instance on anArrayBuffer
, starting at an offset ofbyteOffset
and continuing forlength
bytes.DataView
TypedArrays.Impl. createDataView(ArrayBuffer buffer)
DataView
TypedArrays.Impl. createDataView(ArrayBuffer buffer, int offset)
abstract DataView
TypedArrays.Impl. createDataView(ArrayBuffer buffer, int byteOffset, int byteLength)
Constructors in com.google.gwt.typedarrays.shared with parameters of type DataView Constructor Description DataViewStream(DataView dataView)
-