public static enum ApplicationManager.Environment extends Enum<ApplicationManager.Environment>
| Modifier and Type | Method and Description |
|---|---|
static ApplicationManager.Environment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationManager.Environment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationManager.Environment TEST
public static final ApplicationManager.Environment DEV
public static final ApplicationManager.Environment INT
public static final ApplicationManager.Environment QA
public static final ApplicationManager.Environment PROD
public static ApplicationManager.Environment[] values()
for (ApplicationManager.Environment c : ApplicationManager.Environment.values()) System.out.println(c);
public static ApplicationManager.Environment 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 nullCopyright © 2015. All Rights Reserved.