public enum MavGoto extends Enum<MavGoto>
| 枚举常量和说明 |
|---|
MAV_GOTO_DO_CONTINUE
Continue with the next item in mission execution.
|
MAV_GOTO_DO_HOLD
Hold at the current position.
|
MAV_GOTO_HOLD_AT_CURRENT_POSITION
Hold at the current position of the system
|
MAV_GOTO_HOLD_AT_SPECIFIED_POSITION
Hold at the position specified in the parameters of the DO_HOLD action
|
public static final MavGoto MAV_GOTO_DO_HOLD
public static final MavGoto MAV_GOTO_DO_CONTINUE
public static final MavGoto MAV_GOTO_HOLD_AT_CURRENT_POSITION
public static final MavGoto MAV_GOTO_HOLD_AT_SPECIFIED_POSITION
public static MavGoto[] values()
for (MavGoto c : MavGoto.values()) System.out.println(c);
public static MavGoto valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.