You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
3.0 KiB
Java

/* */ package com.dowse.devicesdk;
/* */
/* */ public final class Const
/* */ {
/* */ public static enum NET_CONN_STATUS
/* */ {
/* 72 */ NET_CONN_OFFLINE(0, "离线状态"),
/* 73 */ NET_CONN_PENDING(1, "请求中"),
/* 74 */ NET_CONN_ONLINE(2, "已上线");
/* */
/* */ private int index;
/* */ private String name;
/* */
/* 77 */ private NET_CONN_STATUS(int index, String name) { this.index = index;
/* 78 */ this.name = name;
/* */ }
/* */
/* */ public int getIndex()
/* */ {
/* 85 */ return this.index;
/* */ }
/* */
/* */ public void setIndex(int index) {
/* 89 */ this.index = index;
/* */ }
/* */
/* */ public String getName() {
/* 93 */ return this.name;
/* */ }
/* */
/* */ public void setName(String name) {
/* 97 */ this.name = name;
/* */ }
/* */ }
/* */
/* */ public static enum NET_REG_STATUS
/* */ {
/* 39 */ NET_REG_UNREG(0, "未注册"),
/* 40 */ NET_REG_REG(1, "已注册"),
/* 41 */ NET_REG_REGISTING(2, "正在注册"),
/* 42 */ NET_REG_DENIED(3, "注册被拒绝"),
/* 43 */ NET_REG_UNKNOWN(4, "未知代码"),
/* 44 */ NET_REG_ROAMING(5, "漫游状态");
/* */
/* */ private int index;
/* */ private String name;
/* */
/* 47 */ private NET_REG_STATUS(int index, String name) { this.index = index;
/* 48 */ this.name = name;
/* */ }
/* */
/* */ public int getIndex()
/* */ {
/* 55 */ return this.index;
/* */ }
/* */
/* */ public void setIndex(int index) {
/* 59 */ this.index = index;
/* */ }
/* */
/* */ public String getName() {
/* 63 */ return this.name;
/* */ }
/* */
/* */ public void setName(String name) {
/* 67 */ this.name = name;
/* */ }
/* */ }
/* */
/* */ public static enum SIM_STATUS
/* */ {
/* 6 */ SIM_UNKNOWY(0, "未知"),
/* 7 */ SIM_CHKING(1, "正在检测"),
/* 8 */ SIM_ABSENT(2, "未找到卡"),
/* 9 */ SIM_PIN(3, "需要pin码解锁"),
/* 10 */ SIM_PUK(4, "需要puk码解锁"),
/* 11 */ SIM_READY(5, "正常使用");
/* */
/* */ private int index;
/* */ private String name;
/* */
/* 14 */ private SIM_STATUS(int index, String name) { this.index = index;
/* 15 */ this.name = name;
/* */ }
/* */
/* */ public int getIndex()
/* */ {
/* 22 */ return this.index;
/* */ }
/* */
/* */ public void setIndex(int index) {
/* 26 */ this.index = index;
/* */ }
/* */
/* */ public String getName() {
/* 30 */ return this.name;
/* */ }
/* */
/* */ public void setName(String name) {
/* 34 */ this.name = name;
/* */ }
/* */ }
/* */ }
/* Location: C:\Users\JingJing\Desktop\i1aar\dsdevicesdk1.3\classes.jar
* Qualified Name: com.dowse.devicesdk.Const
* JD-Core Version: 0.6.0
*/