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