public enum CfgNodeType extends java.lang.Enum<CfgNodeType>
Enum Constant and Description |
---|
BASIC_BLOCK |
CASE |
MERGE |
MODULE |
PROCESS |
SINK |
SOURCE |
SWITCH |
WAIT |
Modifier and Type | Method and Description |
---|---|
static CfgNodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CfgNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CfgNodeType BASIC_BLOCK
public static final CfgNodeType CASE
public static final CfgNodeType MERGE
public static final CfgNodeType MODULE
public static final CfgNodeType PROCESS
public static final CfgNodeType SINK
public static final CfgNodeType SOURCE
public static final CfgNodeType SWITCH
public static final CfgNodeType WAIT
public static CfgNodeType[] values()
for (CfgNodeType c : CfgNodeType.values()) System.out.println(c);
public static CfgNodeType 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