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