public enum ControlFlowNodeType extends java.lang.Enum<ControlFlowNodeType>
| Enum Constant and Description |
|---|
CatchHandler |
EndFinally |
EntryPoint |
ExceptionalExit |
FinallyHandler |
Normal |
RegularExit |
| Modifier and Type | Method and Description |
|---|---|
static ControlFlowNodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ControlFlowNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlFlowNodeType Normal
public static final ControlFlowNodeType EntryPoint
public static final ControlFlowNodeType RegularExit
public static final ControlFlowNodeType ExceptionalExit
public static final ControlFlowNodeType CatchHandler
public static final ControlFlowNodeType FinallyHandler
public static final ControlFlowNodeType EndFinally
public static ControlFlowNodeType[] values()
for (ControlFlowNodeType c : ControlFlowNodeType.values()) System.out.println(c);
public static ControlFlowNodeType 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