IsothermEnum
enum class IsothermEnum
Description: Isotherm type
enum class IsothermEnum(var value: Int) {
/**
* closure
*/
CLOSE(0),
/**
* Search people
*/
PEOPLE(1),
/**
* search fire
*/
FIRE(2),
/**
* customize
*/
CUSTOMIZE(3),
UNKNOWN(0xFF);
}