Class ArrayBufferView

java.lang.Object
org.teavm.jso.typedarrays.ArrayBufferView
All Implemented Interfaces:
org.teavm.jso.JSObject
Direct Known Subclasses:
DataView, Float32Array, Float64Array, Int16Array, Int32Array, Int8Array, Uint16Array, Uint8Array, Uint8ClampedArray

public abstract class ArrayBufferView extends Object implements org.teavm.jso.JSObject
  • Constructor Details

    • ArrayBufferView

      protected ArrayBufferView()
  • Method Details

    • getLength

      public int getLength()
    • getByteLength

      public int getByteLength()
    • getByteOffset

      public int getByteOffset()
    • getBuffer

      public ArrayBuffer getBuffer()
    • set

      public void set(ArrayBufferView other, int offset)
    • set

      public void set(ArrayBufferView other)
    • set

      public void set(JSArrayReader<?> other, int offset)
    • set

      public void set(JSArrayReader<?> other)
    • set

      public void set(byte[] other, int offset)
    • set

      public void set(byte[] other)
    • set

      public void set(short[] other, int offset)
    • set

      public void set(short[] other)
    • set

      public void set(int[] other, int offset)
    • set

      public void set(int[] other)
    • set

      public void set(float[] other, int offset)
    • set

      public void set(float[] other)
    • set

      public void set(double[] other, int offset)
    • set

      public void set(double[] other)