| Enum Constant and Description |
|---|
EndFinally
Jump at the end of a finally block.
|
JumpToExceptionHandler
Jump to exception handler (an exception occurred).
|
LeaveTry
Jump from try block (not a real jump, as the finally handler executes first).
|
Normal
A regular control flow edge.
|
| Modifier and Type | Method and Description |
|---|---|
static JumpType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JumpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JumpType Normal
public static final JumpType JumpToExceptionHandler
public static final JumpType LeaveTry
public static final JumpType EndFinally
public static JumpType[] values()
for (JumpType c : JumpType.values()) System.out.println(c);
public static JumpType 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 null