Class DataValue

java.lang.Object
org.teavm.backend.wasm.binary.DataValue

public abstract class DataValue extends Object
  • Method Details

    • getType

      public DataType getType()
    • getByte

      public byte getByte(int index)
    • setByte

      public void setByte(int index, byte value)
    • getShort

      public short getShort(int index)
    • setShort

      public void setShort(int index, short value)
    • getInt

      public int getInt(int index)
    • setInt

      public void setInt(int index, int value)
    • getLong

      public long getLong(int index)
    • setLong

      public void setLong(int index, long value)
    • getAddress

      public long getAddress(int index)
    • setAddress

      public void setAddress(int index, long value)
    • getFloat

      public float getFloat(int index)
    • setFloat

      public void setFloat(int index, float value)
    • getDouble

      public double getDouble(int index)
    • setDouble

      public void setDouble(int index, double value)
    • getValue

      public DataValue getValue(int index)