package com.zy.core.enums; public enum DualCrnLiftPosType { ERROR(-1, "未知"), // 不在定位 NONE(0, "不在定位"), // 不在定位 _DOWN(1, "双深低位"), // DOWN(2, "单深低位"), // _UP(3, "单深高位"), // UP(4, "双深高位"), // ; public Integer id; public String desc; DualCrnLiftPosType(Integer id, String desc) { this.id = id; this.desc = desc; } public static DualCrnLiftPosType get(Integer id) { if (null == id) { return null; } for (DualCrnLiftPosType type : DualCrnLiftPosType.values()) { if (type.id.equals(id)) { return type; } } return null; } public static DualCrnLiftPosType get(DualCrnLiftPosType type) { if (null == type) { return null; } for (DualCrnLiftPosType crnLiftPosType : DualCrnLiftPosType.values()) { if (crnLiftPosType == type) { return crnLiftPosType; } } return null; } }