Enum WasmInt64Subtype
- java.lang.Object
-
- java.lang.Enum<WasmInt64Subtype>
-
- org.teavm.backend.wasm.model.expression.WasmInt64Subtype
-
- All Implemented Interfaces:
Serializable,Comparable<WasmInt64Subtype>
public enum WasmInt64Subtype extends Enum<WasmInt64Subtype>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WasmInt64SubtypevalueOf(String name)Returns the enum constant of this type with the specified name.static WasmInt64Subtype[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INT8
public static final WasmInt64Subtype INT8
-
UINT8
public static final WasmInt64Subtype UINT8
-
INT16
public static final WasmInt64Subtype INT16
-
UINT16
public static final WasmInt64Subtype UINT16
-
INT32
public static final WasmInt64Subtype INT32
-
UINT32
public static final WasmInt64Subtype UINT32
-
INT64
public static final WasmInt64Subtype INT64
-
-
Method Detail
-
values
public static WasmInt64Subtype[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WasmInt64Subtype c : WasmInt64Subtype.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WasmInt64Subtype valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-