public enum StackType extends Enum<StackType>
Enum Constant and Description |
---|
DOUBLE |
FLOAT |
INT |
LONG |
REF |
RETURNADDRESS |
RETURNADDRESSORREF |
VOID |
Modifier and Type | Method and Description |
---|---|
StackTypes |
asList() |
int |
getComputationCategory() |
boolean |
isClosed() |
String |
toString() |
static StackType |
valueOf(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
public static StackType[] values()
for (StackType c : StackType.values()) System.out.println(c);
public static StackType 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 nullpublic int getComputationCategory()
public StackTypes asList()
public boolean isClosed()
Copyright © 2011-2021. All Rights Reserved.