public static enum HotSpotVMField.Type extends Enum<HotSpotVMField.Type>
Enum Constant and Description |
---|
ADDRESS
Returns the absolute address of this field.
|
OFFSET
Returns the offset of this field within the type.
|
VALUE
Returns the value of this field.
|
Modifier and Type | Method and Description |
---|---|
static HotSpotVMField.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HotSpotVMField.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HotSpotVMField.Type OFFSET
public static final HotSpotVMField.Type ADDRESS
public static final HotSpotVMField.Type VALUE
public static HotSpotVMField.Type[] values()
for (HotSpotVMField.Type c : HotSpotVMField.Type.values()) System.out.println(c);
public static HotSpotVMField.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