public static enum Command.CommandCategory extends Enum<Command.CommandCategory>
| Enum Constant and Description |
|---|
SYSTEM
System commands are not normally directly invoked by users, and
so are normally hidden in help.
|
USER |
| Modifier and Type | Method and Description |
|---|---|
static Command.CommandCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command.CommandCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.CommandCategory SYSTEM
public static final Command.CommandCategory USER
public static Command.CommandCategory[] values()
for (Command.CommandCategory c : Command.CommandCategory.values()) System.out.println(c);
public static Command.CommandCategory 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 © 2018 LSST. All rights reserved.