public enum UsvControlType extends Enum<UsvControlType> implements ControllerType
| Enum Constant and Description |
|---|
LOITERCONTROL
control required to transit to and hold at a specified point
|
OPENLOOPCONTROL
open loop (manual) control
|
WAYPOINTCONTROL
transit to a waypoint
|
| Modifier and Type | Method and Description |
|---|---|
static UsvControlType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UsvControlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UsvControlType WAYPOINTCONTROL
public static final UsvControlType OPENLOOPCONTROL
public static final UsvControlType LOITERCONTROL
public static UsvControlType[] values()
for (UsvControlType c : UsvControlType.values()) System.out.println(c);
public static UsvControlType 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 null