public enum UgvControlType extends Enum<UgvControlType> 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 UgvControlType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UgvControlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UgvControlType WAYPOINTCONTROL
public static final UgvControlType OPENLOOPCONTROL
public static final UgvControlType LOITERCONTROL
public static UgvControlType[] values()
for (UgvControlType c : UgvControlType.values()) System.out.println(c);
public static UgvControlType 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