static enum LoweringPhase.ProcessBlockState extends Enum<LoweringPhase.ProcessBlockState>
Enum Constant and Description |
---|
ST_ENTER |
ST_ENTER_ALWAYS_REACHED |
ST_LEAVE |
ST_PROCESS |
ST_PROCESS_ALWAYS_REACHED |
Modifier and Type | Method and Description |
---|---|
static LoweringPhase.ProcessBlockState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoweringPhase.ProcessBlockState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoweringPhase.ProcessBlockState ST_ENTER
public static final LoweringPhase.ProcessBlockState ST_PROCESS
public static final LoweringPhase.ProcessBlockState ST_ENTER_ALWAYS_REACHED
public static final LoweringPhase.ProcessBlockState ST_LEAVE
public static final LoweringPhase.ProcessBlockState ST_PROCESS_ALWAYS_REACHED
public static LoweringPhase.ProcessBlockState[] values()
for (LoweringPhase.ProcessBlockState c : LoweringPhase.ProcessBlockState.values()) System.out.println(c);
public static LoweringPhase.ProcessBlockState 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