public static enum Configuration.Environment extends java.lang.Enum<Configuration.Environment>
| Enum Constant and Description |
|---|
DEVELOPMENT |
PRODUCTION |
STAGING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
static Configuration.Environment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.Environment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.Environment DEVELOPMENT
public static final Configuration.Environment STAGING
public static final Configuration.Environment PRODUCTION
public static Configuration.Environment[] values()
for (Configuration.Environment c : Configuration.Environment.values()) System.out.println(c);
public static Configuration.Environment 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 java.lang.String getName()
Copyright © 2019. All Rights Reserved.