public enum VmType extends Enum<VmType>
| Modifier and Type | Method and Description |
|---|---|
byte |
value() |
static VmType |
valueOf(byte v) |
static VmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VmType NEOVM
public static final VmType WASMVM
public static VmType[] values()
for (VmType c : VmType.values()) System.out.println(c);
public static VmType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic byte value()
public static VmType valueOf(byte v)
Copyright © 2020. All rights reserved.