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
  | package com.zy.core.enums; 
 |    
 |  public enum CrnLiftPosType { 
 |    
 |      ERROR(-1, "未知"),   // 不在定位 
 |      ORIGIN(0, "货叉原位"),   // 不在定位 
 |      _DOWN(1, "双伸位低位"), 
 |      DOWN(2, "单伸位低位"),  // 下定位 
 |      UP(3, "单伸位高位"),   // 上定位 
 |      _UP(4, "双伸位高位"), 
 |      ; 
 |    
 |      public Integer id; 
 |      public String desc; 
 |      CrnLiftPosType(Integer id, String desc) { 
 |          this.id = id; 
 |          this.desc = desc; 
 |      } 
 |    
 |      public static CrnLiftPosType get(Short id) { 
 |          if (null == id) { 
 |              return null; 
 |          } 
 |          for (CrnLiftPosType type : CrnLiftPosType.values()) { 
 |              if (type.id.equals(id.intValue())) { 
 |                  return type; 
 |              } 
 |          } 
 |          return null; 
 |      } 
 |    
 |      public static CrnLiftPosType get(CrnLiftPosType type) { 
 |          if (null == type) { 
 |              return null; 
 |          } 
 |          for (CrnLiftPosType crnLiftPosType : CrnLiftPosType.values()) { 
 |              if (crnLiftPosType == type) { 
 |                  return crnLiftPosType; 
 |              } 
 |          } 
 |          return null; 
 |      } 
 |    
 |  } 
 |  
  |