public enum ControlFlowEdgeType extends java.lang.Enum<ControlFlowEdgeType>
| Enum Constant and Description |
|---|
ConditionFalse
Conditional control flow (edge taken if condition is false)
|
ConditionTrue
Conditional control flow (edge taken if condition is true)
|
Jump
A jump statement (goto, goto case, break or continue)
|
Normal
Regular control flow.
|
| Modifier and Type | Method and Description |
|---|---|
static ControlFlowEdgeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ControlFlowEdgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlFlowEdgeType Normal
public static final ControlFlowEdgeType ConditionTrue
public static final ControlFlowEdgeType ConditionFalse
public static final ControlFlowEdgeType Jump
public static ControlFlowEdgeType[] values()
for (ControlFlowEdgeType c : ControlFlowEdgeType.values()) System.out.println(c);
public static ControlFlowEdgeType 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