static enum PhaseOptimizer.State extends java.lang.Enum<PhaseOptimizer.State>
This enum is used by Loop/process only, but enum types can't be local.
Enum Constant and Description |
---|
RUN_PASSES_NOT_RUN_IN_PREV_ITER |
RUN_PASSES_THAT_CHANGED_STH_IN_PREV_ITER |
Modifier and Type | Method and Description |
---|---|
static PhaseOptimizer.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhaseOptimizer.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhaseOptimizer.State RUN_PASSES_NOT_RUN_IN_PREV_ITER
public static final PhaseOptimizer.State RUN_PASSES_THAT_CHANGED_STH_IN_PREV_ITER
public static PhaseOptimizer.State[] values()
for (PhaseOptimizer.State c : PhaseOptimizer.State.values()) System.out.println(c);
public static PhaseOptimizer.State 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