public static enum HotSpotVMType.Type extends Enum<HotSpotVMType.Type>
| Enum Constant and Description |
|---|
SIZE
Returns the size of the type (C++
sizeof()). |
| Modifier and Type | Method and Description |
|---|---|
static HotSpotVMType.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HotSpotVMType.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HotSpotVMType.Type SIZE
sizeof()).public static HotSpotVMType.Type[] values()
for (HotSpotVMType.Type c : HotSpotVMType.Type.values()) System.out.println(c);
public static HotSpotVMType.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