public static enum CommandManager.RegistrationEnvironment extends Enum<CommandManager.RegistrationEnvironment>
Enum Constant and Description |
---|
ALL |
DEDICATED |
INTEGRATED |
Modifier and Type | Field and Description |
---|---|
private boolean |
dedicated |
private boolean |
integrated |
Modifier and Type | Method and Description |
---|---|
static CommandManager.RegistrationEnvironment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommandManager.RegistrationEnvironment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandManager.RegistrationEnvironment ALL
public static final CommandManager.RegistrationEnvironment DEDICATED
public static final CommandManager.RegistrationEnvironment INTEGRATED
public static CommandManager.RegistrationEnvironment[] values()
for (CommandManager.RegistrationEnvironment c : CommandManager.RegistrationEnvironment.values()) System.out.println(c);
public static CommandManager.RegistrationEnvironment 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 null