提交 | 用户 | 时间 | ||
149dd0 | 1 | package com.iailab.netsdk.lib.enumeration; |
H | 2 | |
3 | public class EM_STORAGE_DISK_POWERMODE { | |
4 | public static final int EM_STORAGE_DISK_POWERMODE_UNKNOWN = 0; // UNKnown状态(不是以下状态中的值) | |
5 | public static final int EM_STORAGE_DISK_POWERMODE_NONE = 1; // 未知状态 | |
6 | public static final int EM_STORAGE_DISK_POWERMODE_ACTIVE = 2; // 活动状态 | |
7 | public static final int EM_STORAGE_DISK_POWERMODE_STANDBY = 3; // 休眠状态 | |
8 | public static final int EM_STORAGE_DISK_POWERMODE_IDLE = 4; // 空闲状态 | |
9 | } |