Uses of Class
com.dylibso.chicory.wasm.types.ValueType
-
Packages that use ValueType Package Description com.dylibso.chicory.wasm.types -
-
Uses of ValueType in com.dylibso.chicory.wasm.types
Methods in com.dylibso.chicory.wasm.types that return ValueType Modifier and Type Method Description ValueTypeTable. elementType()ValueTypeTableImport. entryType(){@return the table entry type}static ValueTypeValueType. forId(int id){@return theValueTypefor the given ID value}static ValueTypeValueType. refTypeForId(int id){@return the reference-typedValueTypefor the given ID value}ValueTypeElement. type(){@return the type of the element values}ValueTypeGlobalImport. type(){@return the type of the value stored in the global}ValueTypeValue. type()static ValueTypeValueType. valueOf(String name)Returns the enum constant of this type with the specified name.static ValueType[]ValueType. values()Returns an array containing the constants of this enum type, in the order they are declared.ValueTypeGlobal. valueType()Methods in com.dylibso.chicory.wasm.types that return types with arguments of type ValueType Modifier and Type Method Description List<ValueType>FunctionBody. localTypes()List<ValueType>FunctionType. params()List<ValueType>FunctionType. returns()Methods in com.dylibso.chicory.wasm.types with parameters of type ValueType Modifier and Type Method Description static FunctionTypeFunctionType. accepting(ValueType valueType)static FunctionTypeFunctionType. of(ValueType[] params, ValueType[] returns)static FunctionTypeFunctionType. returning(ValueType valueType)static ValueValue. zero(ValueType valueType)Create a zeroed value for the particular type.Method parameters in com.dylibso.chicory.wasm.types with type arguments of type ValueType Modifier and Type Method Description static FunctionTypeFunctionType. of(List<ValueType> params, List<ValueType> returns)Constructors in com.dylibso.chicory.wasm.types with parameters of type ValueType Constructor Description ActiveElement(ValueType type, List<List<Instruction>> initializers, int tableIndex, List<Instruction> offset)Construct a new instance.DeclarativeElement(ValueType type, List<List<Instruction>> initializers)Construct a new instance.Element(ValueType type, List<List<Instruction>> initializers)Construct a new instance.Global(ValueType valueType, MutabilityType mutabilityType, List<Instruction> init)GlobalImport(String moduleName, String name, MutabilityType mutabilityType, ValueType type)Construct a new instance.PassiveElement(ValueType type, List<List<Instruction>> initializers)Construct a new instance.Table(ValueType elementType, Limits limits)TableImport(String moduleName, String name, ValueType entryType, Limits limits)Construct a new instance.Value(ValueType type, int value)Value(ValueType type, long value)Constructor parameters in com.dylibso.chicory.wasm.types with type arguments of type ValueType Constructor Description FunctionBody(List<ValueType> locals, List<Instruction> instructions)
-