dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3
4 /** 
5 * @author 291189
6 * @description  获取网卡信息类型 CLIENT_QueryNetStat  接口使用 
7 * @origin autoTool
8 * @date 2023/06/16 16:38:23
9 */
10 public enum EM_NET_QUERY_TYPE {
11 /**
12 获取协议栈统计数据,(输入结构体NET_IN_NETAPP_NET_DATA_STAT,输出结构体NET_OUT_NETAPP_NET_DATA_STAT)
13 */
14 NET_APP_DATA_STAT(0,"获取协议栈统计数据,(输入结构体NET_IN_NETAPP_NET_DATA_STAT,输出结构体NET_OUT_NETAPP_NET_DATA_STAT)"),
15 /**
16 获取物理链路状态,(输入结构体NET_IN_NETAPP_LINK_STATUS,输出结构体NET_OUT_NETAPP_LINK_STATUS)
17 */
18 NET_APP_LINK_STAT(1,"获取物理链路状态,(输入结构体NET_IN_NETAPP_LINK_STATUS,输出结构体NET_OUT_NETAPP_LINK_STATUS)");
19
20 private int value;
21
22 private String note;
23
24 public String getNote() {
25         return note;
26     }
27
28 public int getValue() {
29         return value;
30     }
31
32 EM_NET_QUERY_TYPE(int givenValue, String note) {
33         this.value = givenValue;
34         this.note = note;
35     }
36
37 public static String getNoteByValue(int givenValue) {
38         for (EM_NET_QUERY_TYPE enumType : EM_NET_QUERY_TYPE.values()) {
39             if (givenValue == enumType.getValue()) {
40                 return enumType.getNote();
41             }
42         }
43         return null;
44     }
45
46 public static int getValueByNote(String givenNote) {
47         for (EM_NET_QUERY_TYPE enumType : EM_NET_QUERY_TYPE.values()) {
48             if (givenNote.equals(enumType.getNote())) {
49                 return enumType.getValue();
50             }
51         }
52         return -1;
53     }
54
55 public static EM_NET_QUERY_TYPE getEnum(int value) {
56         for (EM_NET_QUERY_TYPE e : EM_NET_QUERY_TYPE.values()) {
57             if (e.getValue() == value)
58                 return e;
59         }
60         return EM_NET_QUERY_TYPE.NET_APP_DATA_STAT;
61     }
62
63 }