package com.iailab.netsdk.lib.enumeration; /** * @author 291189 * @description 压板状态 * @date 2022/06/28 19:44:56 */ public enum EM_PRESSING_PLATE_STATE { /** 未知 */ EM_PRESSING_PLATE_STATE_UNKNOWN(0,"未知"), /** 断开 */ EM_PRESSING_PLATE_STATE_DISCONNECT(1,"断开"), /** 闭合 */ EM_PRESSING_PLATE_STATE_CLOSE(2,"闭合"); private int value; private String note; public String getNote() { return note; } public int getValue() { return value; } EM_PRESSING_PLATE_STATE(int givenValue, String note) { this.value = givenValue; this.note = note; } public static String getNoteByValue(int givenValue) { for (EM_PRESSING_PLATE_STATE enumType : EM_PRESSING_PLATE_STATE.values()) { if (givenValue == enumType.getValue()) { return enumType.getNote(); } } return null; } public static int getValueByNote(String givenNote) { for (EM_PRESSING_PLATE_STATE enumType : EM_PRESSING_PLATE_STATE.values()) { if (givenNote.equals(enumType.getNote())) { return enumType.getValue(); } } return -1; } public static EM_PRESSING_PLATE_STATE getEnum(int value) { for (EM_PRESSING_PLATE_STATE e : EM_PRESSING_PLATE_STATE.values()) { if (e.getValue() == value) return e; } return EM_PRESSING_PLATE_STATE.EM_PRESSING_PLATE_STATE_UNKNOWN; } }