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