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