public static enum VehicleCommand.COMMAND extends java.lang.Enum<VehicleCommand.COMMAND>
Enum Constant and Description |
---|
EXEC_MANEUVER |
START_CALIBRATION |
STOP_CALIBRATION |
STOP_MANEUVER |
Modifier and Type | Method and Description |
---|---|
long |
value() |
static VehicleCommand.COMMAND |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VehicleCommand.COMMAND[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VehicleCommand.COMMAND EXEC_MANEUVER
public static final VehicleCommand.COMMAND STOP_MANEUVER
public static final VehicleCommand.COMMAND START_CALIBRATION
public static final VehicleCommand.COMMAND STOP_CALIBRATION
public static VehicleCommand.COMMAND[] values()
for (VehicleCommand.COMMAND c : VehicleCommand.COMMAND.values()) System.out.println(c);
public static VehicleCommand.COMMAND valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic long value()