自动化立体仓库 - WCS系统
#
luxiaotao1123
2020-08-11 559c77882acf51920ec1e3acd2848df7cf75f71c
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 com.zy.core.enums;
 
public enum CrnForkPosType {
 
    HOME(1),   // 货叉原位
    LEFT(2),  // 货叉在左侧
    RIGHT(0),   // 货叉在右侧
    ;
 
    public Integer id;
    CrnForkPosType(Integer id) {
        this.id = id;
    }
 
    public static CrnForkPosType get(Short id) {
        if (null == id) {
            return null;
        }
        for (CrnForkPosType type : CrnForkPosType.values()) {
            if (type.id.equals(id.intValue())) {
                return type;
            }
        }
        return null;
    }
 
    public static CrnForkPosType get(CrnForkPosType type) {
        if (null == type) {
            return null;
        }
        for (CrnForkPosType crnForkPosType : CrnForkPosType.values()) {
            if (crnForkPosType == type) {
                return crnForkPosType;
            }
        }
        return null;
    }
}