package com.zy.core.enums; public enum CrnFingerPosType { DOWN(2, "下定位"), // 下定位 UP(1, "上定位"), // 上定位 NONE(0, "不在定位"), // 不在定位 ; public Integer id; public String desc; CrnFingerPosType(Integer id, String desc) { this.id = id; this.desc = desc; } public static CrnFingerPosType get(Short id) { if (null == id) { return null; } for (CrnFingerPosType type : CrnFingerPosType.values()) { if (type.id.equals(id.intValue())) { return type; } } return null; } public static CrnFingerPosType get(CrnFingerPosType type) { if (null == type) { return null; } for (CrnFingerPosType crnLiftPosType : CrnFingerPosType.values()) { if (crnLiftPosType == type) { return crnLiftPosType; } } return null; } }