package com.iailab.netsdk.lib.enumeration;

/**
 * @author 251823
 * @description 羌����⑥膈���
 * @date 2023/03/16 14:23:46
 */
public enum EM_CFG_DAY3GFLUXACTION {
	/**
	 * �����
	 */
	EM_CFG_DAY3GFLUXACTION_NOTHING(0, "�����"),
	/**
	 * 3G筝�膾�
	 */
	EM_CFG_DAY3GFLUXACTION_3GNETDOWN(1, "3G筝�膾�");

	private int value;

	private String note;

	public String getNote() {
		return note;
	}

	public int getValue() {
		return value;
	}

	EM_CFG_DAY3GFLUXACTION(int givenValue, String note) {
		this.value = givenValue;
		this.note = note;
	}

	public static String getNoteByValue(int givenValue) {
		for (EM_CFG_DAY3GFLUXACTION enumType : EM_CFG_DAY3GFLUXACTION.values()) {
			if (givenValue == enumType.getValue()) {
				return enumType.getNote();
			}
		}
		return null;
	}

	public static int getValueByNote(String givenNote) {
		for (EM_CFG_DAY3GFLUXACTION enumType : EM_CFG_DAY3GFLUXACTION.values()) {
			if (givenNote.equals(enumType.getNote())) {
				return enumType.getValue();
			}
		}
		return -1;
	}
}