public enum FeaturePhase extends java.lang.Enum<FeaturePhase>
Enum Constant and Description |
---|
BUILD |
DEFAULT |
HIGH |
HIGHEST |
LANGUAGE |
LOW |
LOWEST |
TEST |
Modifier and Type | Method and Description |
---|---|
int |
getOrder() |
static FeaturePhase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeaturePhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeaturePhase LOWEST
public static final FeaturePhase LOW
public static final FeaturePhase DEFAULT
public static final FeaturePhase LANGUAGE
public static final FeaturePhase TEST
public static final FeaturePhase BUILD
public static final FeaturePhase HIGH
public static final FeaturePhase HIGHEST
public static FeaturePhase[] values()
for (FeaturePhase c : FeaturePhase.values()) System.out.println(c);
public static FeaturePhase 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 nullpublic int getOrder()