public static enum Command.CommandType extends Enum<Command.CommandType>
| Enum Constant and Description |
|---|
ABORT
Deprecated.
|
ACTION |
CONFIGURATION |
QUERY |
SIGNAL |
| Modifier and Type | Method and Description |
|---|---|
static Command.CommandType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command.CommandType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.CommandType QUERY
public static final Command.CommandType ACTION
public static final Command.CommandType CONFIGURATION
public static final Command.CommandType SIGNAL
@Deprecated public static final Command.CommandType ABORT
public static Command.CommandType[] values()
for (Command.CommandType c : Command.CommandType.values()) System.out.println(c);
public static Command.CommandType 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 © 2017 LSST. All rights reserved.