public static enum LoweringTool.StandardLoweringStage extends Enum<LoweringTool.StandardLoweringStage> implements LoweringTool.LoweringStage
Modifier and Type | Method and Description |
---|---|
static LoweringTool.StandardLoweringStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoweringTool.StandardLoweringStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoweringTool.StandardLoweringStage HIGH_TIER
public static final LoweringTool.StandardLoweringStage MID_TIER
public static final LoweringTool.StandardLoweringStage LOW_TIER
public static LoweringTool.StandardLoweringStage[] values()
for (LoweringTool.StandardLoweringStage c : LoweringTool.StandardLoweringStage.values()) System.out.println(c);
public static LoweringTool.StandardLoweringStage 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