public static enum LauncherConfig.LauncherEnvironment extends java.lang.Enum<LauncherConfig.LauncherEnvironment>
| Modifier and Type | Method and Description |
|---|---|
static LauncherConfig.LauncherEnvironment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LauncherConfig.LauncherEnvironment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LauncherConfig.LauncherEnvironment DEV
public static final LauncherConfig.LauncherEnvironment DEBUG
public static final LauncherConfig.LauncherEnvironment STD
public static final LauncherConfig.LauncherEnvironment PROD
public static LauncherConfig.LauncherEnvironment[] values()
for (LauncherConfig.LauncherEnvironment c : LauncherConfig.LauncherEnvironment.values()) System.out.println(c);
public static LauncherConfig.LauncherEnvironment 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 null