public static enum HotSpotVMValue.Type extends Enum<HotSpotVMValue.Type>
Enum Constant and Description |
---|
ADDRESS
A C++ address which might require extra casts to be safely assigned to a Java field.
|
VALUE
A simple value which can be assigned to a regular Java field.
|
Modifier and Type | Method and Description |
---|---|
static HotSpotVMValue.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HotSpotVMValue.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HotSpotVMValue.Type ADDRESS
public static final HotSpotVMValue.Type VALUE
public static HotSpotVMValue.Type[] values()
for (HotSpotVMValue.Type c : HotSpotVMValue.Type.values()) System.out.println(c);
public static HotSpotVMValue.Type 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