public enum RegressionEnvironment extends java.lang.Enum<RegressionEnvironment>
| Enum Constant and Description |
|---|
LOCAL |
NIGHTLY |
REGRESSION |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
getValue(java.lang.String key) |
static boolean |
isRegression() |
static RegressionEnvironment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RegressionEnvironment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegressionEnvironment REGRESSION
public static final RegressionEnvironment LOCAL
public static final RegressionEnvironment NIGHTLY
public static RegressionEnvironment[] values()
for (RegressionEnvironment c : RegressionEnvironment.values()) System.out.println(c);
public static RegressionEnvironment 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 static boolean isRegression()
public static java.lang.String getValue(java.lang.String key)