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
| package tech.powerjob.common.enums;
|
| import lombok.AllArgsConstructor;
| import lombok.Getter;
|
| /**
| * 支持开/关的状态,如 任务状态(JobStatus)和工作流状态(WorkflowStatus)
| *
| * @author tjq
| * @since 2020/4/6
| */
| @Getter
| @AllArgsConstructor
| public enum SwitchableStatus {
| /**
| * 启用
| */
| ENABLE(1),
| /**
| * 关闭
| */
| DISABLE(2),
| /**
| * 软删除
| */
| DELETED(99);
|
| private final int v;
|
| public static SwitchableStatus of(int v) {
| for (SwitchableStatus type : values()) {
| if (type.v == v) {
| return type;
| }
| }
| throw new IllegalArgumentException("unknown SwitchableStatus of " + v);
| }
| }
|
|