public static enum Statement.Kind extends Enum<Statement.Kind>
Enum Constant and Description |
---|
CATCH |
EXC_RET_CALLEE |
EXC_RET_CALLER |
HEAP_PARAM_CALLEE |
HEAP_PARAM_CALLER |
HEAP_RET_CALLEE |
HEAP_RET_CALLER |
METHOD_ENTRY |
METHOD_EXIT |
NORMAL |
NORMAL_RET_CALLEE |
NORMAL_RET_CALLER |
PARAM_CALLEE |
PARAM_CALLER |
PHI |
PI |
Modifier and Type | Method and Description |
---|---|
static Statement.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Statement.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Statement.Kind NORMAL
public static final Statement.Kind PHI
public static final Statement.Kind PI
public static final Statement.Kind CATCH
public static final Statement.Kind PARAM_CALLER
public static final Statement.Kind PARAM_CALLEE
public static final Statement.Kind NORMAL_RET_CALLER
public static final Statement.Kind NORMAL_RET_CALLEE
public static final Statement.Kind EXC_RET_CALLER
public static final Statement.Kind EXC_RET_CALLEE
public static final Statement.Kind HEAP_PARAM_CALLER
public static final Statement.Kind HEAP_PARAM_CALLEE
public static final Statement.Kind HEAP_RET_CALLER
public static final Statement.Kind HEAP_RET_CALLEE
public static final Statement.Kind METHOD_ENTRY
public static final Statement.Kind METHOD_EXIT
public static Statement.Kind[] values()
for (Statement.Kind c : Statement.Kind.values()) System.out.println(c);
public static Statement.Kind 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