public static enum HotSpotOperation.HotspotOpcode extends Enum<HotSpotOperation.HotspotOpcode>
Enum Constant and Description |
---|
FROM_POINTER |
IS_NULL |
POINTER_EQ |
POINTER_NE |
READ_KLASS_POINTER |
TO_KLASS_POINTER |
TO_METHOD_POINTER |
Modifier and Type | Method and Description |
---|---|
static HotSpotOperation.HotspotOpcode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HotSpotOperation.HotspotOpcode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HotSpotOperation.HotspotOpcode FROM_POINTER
public static final HotSpotOperation.HotspotOpcode TO_KLASS_POINTER
public static final HotSpotOperation.HotspotOpcode TO_METHOD_POINTER
public static final HotSpotOperation.HotspotOpcode POINTER_EQ
public static final HotSpotOperation.HotspotOpcode POINTER_NE
public static final HotSpotOperation.HotspotOpcode IS_NULL
public static final HotSpotOperation.HotspotOpcode READ_KLASS_POINTER
public static HotSpotOperation.HotspotOpcode[] values()
for (HotSpotOperation.HotspotOpcode c : HotSpotOperation.HotspotOpcode.values()) System.out.println(c);
public static HotSpotOperation.HotspotOpcode 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 null