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