Skip to main content

禁飞区警报错误码

enum class AirportWarningEnum

描述: 龙鱼禁飞区警报错误码

enum class AirportWarningEnum(var value: Int) {

/**
* 无告警
* No warning
*/
NO_WARING(0),

/**
* 靠近禁飞区
* Close to the no-fly zone
*/
CLOSE_TO_NO_FLY_ZONE(1),

/**
* 在禁飞区内
* Inside the no-fly zone
*/
INSIDE_NO_FLY_ZONE(2),

/**
* 靠近可飞区边缘
* Close to the flyable zone
*/
CLOSE_TO_FLYABLE_ZONE(3),

/**
* 在可飞区外
* Outside the flyable zone
*/
OUTSIDE_FLYABLE_ZONE(4),

/**
* 靠近强制可飞区边缘
* Close to the mandatory flyable zone
*/
CLOSE_TO_MANDATORY_FLYABLE_ZONE(5);
}