package com.iailab.netsdk.lib.enumeration; /** * @author 251823 * @description 羌��鋎睡����� * @date 2023/03/16 14:28:39 */ public enum EM_CFG_3GFLUXTACTIC { /** * ���ョ瓜�� */ EM_3GFLUXTACTIC_UNKNOWN(-1, "���ョ瓜��"), /** * ������羌��� */ EM_3GFLUXTACTIC_BYFLUX(0, "������羌���"), /** * �������狗�� */ EM_3GFLUXTACTIC_BYTIME(1, "�������狗��"); private int value; private String note; public String getNote() { return note; } public int getValue() { return value; } EM_CFG_3GFLUXTACTIC(int givenValue, String note) { this.value = givenValue; this.note = note; } public static String getNoteByValue(int givenValue) { for (EM_CFG_3GFLUXTACTIC enumType : EM_CFG_3GFLUXTACTIC.values()) { if (givenValue == enumType.getValue()) { return enumType.getNote(); } } return null; } public static int getValueByNote(String givenNote) { for (EM_CFG_3GFLUXTACTIC enumType : EM_CFG_3GFLUXTACTIC.values()) { if (givenNote.equals(enumType.getNote())) { return enumType.getValue(); } } return -2; } }