Enum Constant and Description |
---|
DOUBLE |
FLOAT |
INT |
LONG |
REF |
RETURNADDRESS |
RETURNADDRESSORREF |
VOID |
Modifier and Type | Field and Description |
---|---|
private StackTypes |
asList |
private boolean |
closed |
private int |
computationCategory |
private java.lang.String |
name |
Modifier and Type | Method and Description |
---|---|
StackTypes |
asList() |
int |
getComputationCategory() |
boolean |
isClosed() |
java.lang.String |
toString() |
static StackType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackType INT
public static final StackType FLOAT
public static final StackType REF
public static final StackType RETURNADDRESS
public static final StackType RETURNADDRESSORREF
public static final StackType LONG
public static final StackType DOUBLE
public static final StackType VOID
private final int computationCategory
private final StackTypes asList
private final boolean closed
private final java.lang.String name
public static StackType[] values()
for (StackType c : StackType.values()) System.out.println(c);
public static StackType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getComputationCategory()
public StackTypes asList()
public boolean isClosed()
public java.lang.String toString()
toString
in class java.lang.Enum<StackType>