潘志宝
2024-11-28 231897591c909b164defebfdb5936387ec2807d0
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3 public enum EM_RAID_ERROR {
4
5     EM_RAID_ERROR_UNKNOW(0, "未知"),
6     EM_RAID_ERROR_FAILED(1, "RAID错误"),                      // RAID错误
7     EM_RAID_ERROR_DEGRADED(2, "RAID降级");                     // RAID降级
8
9     private int value;
10     private String note;
11
12     private EM_RAID_ERROR(int givenValue, String note) {
13         this.value = givenValue;
14         this.note = note;
15     }
16
17     public String getNote() {
18         return note;
19     }
20
21     public int getValue() {
22         return value;
23     }
24
25     public static String getNoteByValue(int givenValue) {
26         for (EM_RAID_ERROR enumType : EM_RAID_ERROR.values()) {
27             if (givenValue == enumType.getValue()) {
28                 return enumType.getNote();
29             }
30         }
31         return null;
32     }
33
34     public static int getValueByNote(String givenNote) {
35         for (EM_RAID_ERROR enumType : EM_RAID_ERROR.values()) {
36             if (givenNote.equals(enumType.getNote())) {
37                 return enumType.getValue();
38             }
39         }
40         return -1;
41     }
42 }