Skip to main content

Airport Warning Enumeration

enum class AirportWarningEnum

Description: Airport Warning Enumeration

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);
}