public enum ControlFlowNodeType extends java.lang.Enum<ControlFlowNodeType>
| Enum Constant and Description |
|---|
BetweenStatements
Node between two statements
|
EndNode
Node at the end of a statement list
|
LoopCondition
Node representing the position before evaluating the condition of a loop.
|
None
Unknown node type
|
StartNode
Node in front of a statement
|
| 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 None
public static final ControlFlowNodeType StartNode
public static final ControlFlowNodeType BetweenStatements
public static final ControlFlowNodeType EndNode
public static final ControlFlowNodeType LoopCondition
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