public static enum Configuration.Environment extends Enum<Configuration.Environment>
| Enum Constant and Description |
|---|
DEVELOPMENT |
PRODUCTION |
STAGING |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static Configuration.Environment |
valueOf(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(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 nullpublic String getName()
Copyright © 2019. All rights reserved.