Package org.teavm.jso.typedarrays
Class ArrayBufferView
java.lang.Object
org.teavm.jso.typedarrays.ArrayBufferView
- All Implemented Interfaces:
JSObject
- Direct Known Subclasses:
DataView
,Float32Array
,Float64Array
,Int16Array
,Int32Array
,Int8Array
,Uint16Array
,Uint8Array
,Uint8ClampedArray
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract ArrayBuffer
abstract int
abstract int
abstract int
abstract void
set(byte[] other)
abstract void
set(byte[] other, int offset)
abstract void
set(double[] other)
abstract void
set(double[] other, int offset)
abstract void
set(float[] other)
abstract void
set(float[] other, int offset)
abstract void
set(int[] other)
abstract void
set(int[] other, int offset)
abstract void
set(short[] other)
abstract void
set(short[] other, int offset)
abstract void
set(JSArrayReader<?> other)
abstract void
set(JSArrayReader<?> other, int offset)
abstract void
set(ArrayBufferView other)
abstract void
set(ArrayBufferView other, int offset)
-
Constructor Details
-
ArrayBufferView
protected ArrayBufferView()
-
-
Method Details
-
getLength
public abstract int getLength() -
getByteLength
public abstract int getByteLength() -
getByteOffset
public abstract int getByteOffset() -
getBuffer
-
set
-
set
-
set
-
set
-
set
public abstract void set(byte[] other, int offset) -
set
public abstract void set(byte[] other) -
set
public abstract void set(short[] other, int offset) -
set
public abstract void set(short[] other) -
set
public abstract void set(int[] other, int offset) -
set
public abstract void set(int[] other) -
set
public abstract void set(float[] other, int offset) -
set
public abstract void set(float[] other) -
set
public abstract void set(double[] other, int offset) -
set
public abstract void set(double[] other)
-