Skip to main content

升级结果类型枚举

enum class UpgradeResultTypeEnum

描述: 升级结果类型枚举

    enum class UpgradeResultTypeEnum(var value: Int) {
/**
* 升级结束
*/
UPGRADE_FINISH(0),

/**
* 升级成功
*/
UPGRADE_SUCCESS(1),

/**
* 升级失败
*/
UPGRADE_FAILURE(2),

/**
* 升级失败
*/
UPGRADE_UNKNOWN(3);
}