Skip to main content

AreaBandMode

enum class AreaBandMode

Description: Regional frequency band

enum class AreaBandMode(val value: String, val mode: Int) {
/**
* other
*/
Other("DEFAULT", 5),

/**
* China
*/
China("CN", 7),

/**
* Thailand
*/
Thailand("TH", 5),

/**
* Pakistan
*/
Pakistan("PK", 5),

/**
* India
*/
India("IN", 5),

/**
* Australia
*/
Australian("AU", 5),

/**
* European Union
*/
European Union("", 5),

/**
* South Korea
*/
Korea("KR", 5),

/**
* the Philippines
*/
Philippines("PH", 7),

/**
* Taiwan
*/
TaiWan("TW", 7),

/**
* Hongkong
*/
HongKong("HK", 7),

/**
* North America is the United States, other countries can't afford it
*/
NorthAmerica("US", 7),

/**
* Guam
*/
Guam("GU", 7),

/**
* Russia
*/
Russia("RU", 7),

/**
* Japan
*/
Japan("JP", 1);
}