public enum StackEntryType extends Enum<StackEntryType>
Enum Constant and Description |
---|
DOUBLE |
FLOAT |
INT |
LONG |
NULL |
OBJECT |
TOP |
UNINITIALIZED_THIS |
UNITITIALIZED_OBJECT |
Modifier and Type | Method and Description |
---|---|
static StackEntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StackEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackEntryType TOP
public static final StackEntryType INT
public static final StackEntryType FLOAT
public static final StackEntryType DOUBLE
public static final StackEntryType LONG
public static final StackEntryType NULL
public static final StackEntryType UNINITIALIZED_THIS
public static final StackEntryType OBJECT
public static final StackEntryType UNITITIALIZED_OBJECT
public static StackEntryType[] values()
for (StackEntryType c : StackEntryType.values()) System.out.println(c);
public static StackEntryType 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 nullCopyright © 2015. All rights reserved.