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