1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| package com.qianwen.smartman.modules.mdc.enums;
|
| public enum RpsTypeEnum {
| /**
| * T1运行
| */
| T1(1, "T1"),
| T2(2, "T2"),
| T3(3, "T3"),
| /**
| * T4报警
| */
| T4(4, "T4"),
| T5(5, "T5"),
| T6(6, "T6");
|
| private final int type;
| private final String desc;
|
| RpsTypeEnum(final int type, final String desc) {
| this.type = type;
| this.desc = desc;
| }
|
| public int getType() {
| return this.type;
| }
|
| public String getDesc() {
| return this.desc;
| }
|
| public static RpsTypeEnum of(Integer rpsType) {
| if (rpsType == null) {
| return null;
| }
| RpsTypeEnum[] values = values();
| for (RpsTypeEnum rpsTypeEnum : values) {
| if (rpsTypeEnum.type == rpsType.intValue()) {
| return rpsTypeEnum;
| }
| }
| return null;
| }
| }
|
|