public static enum CFGBuilder.ExtendedNode.ExtendedNodeType extends Enum<CFGBuilder.ExtendedNode.ExtendedNodeType>
Enum Constant and Description |
---|
CONDITIONAL_JUMP |
EXCEPTION_NODE |
NODE |
UNCONDITIONAL_JUMP |
Modifier and Type | Method and Description |
---|---|
static CFGBuilder.ExtendedNode.ExtendedNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CFGBuilder.ExtendedNode.ExtendedNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CFGBuilder.ExtendedNode.ExtendedNodeType NODE
public static final CFGBuilder.ExtendedNode.ExtendedNodeType EXCEPTION_NODE
public static final CFGBuilder.ExtendedNode.ExtendedNodeType UNCONDITIONAL_JUMP
public static final CFGBuilder.ExtendedNode.ExtendedNodeType CONDITIONAL_JUMP
public static CFGBuilder.ExtendedNode.ExtendedNodeType[] values()
for (CFGBuilder.ExtendedNode.ExtendedNodeType c : CFGBuilder.ExtendedNode.ExtendedNodeType.values()) System.out.println(c);
public static CFGBuilder.ExtendedNode.ExtendedNodeType 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