HighSpeedEnum
enum class HighSpeedEnum
Description: High speed mode
enum class HighSpeedEnum(val value: Int) {
/**
* normal mode
*/
NORMAL(0),
/**
* Upload files at high speed (upload task files)
*/
HIGH_UPLOAD(1),
/**
* 2- High speed download mode (download photo or video)
*/
HIGH_DOWNLOAD(2),
/**
* Exclusive mode
*/
EXCLUSIVE (3),
/**
* quit
*/
EXIT (4);
}