public static enum Configuration.Env extends java.lang.Enum<Configuration.Env>
| Enum Constant and Description |
|---|
development
The test and the development environment.
|
production
The AudioBox production environment, use this as default or in release builds.
|
staging
The environment to use for experimental features and future APIs.
|
| Modifier and Type | Method and Description |
|---|---|
static Configuration.Env |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.Env[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.Env production
public static final Configuration.Env staging
public static final Configuration.Env development
public static Configuration.Env[] values()
for (Configuration.Env c : Configuration.Env.values()) System.out.println(c);
public static Configuration.Env 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