package com.iailab.netsdk.lib.enumeration;
|
|
/**
|
* @author 260611
|
* @description 是否为非允许名单车辆
|
* @origin autoTool
|
* @date 2023/06/20 10:13:16
|
*/
|
public enum EM_NON_ALLOW_LIST_CAR {
|
/**
|
* 未知
|
*/
|
EM_NON_ALLOW_LIST_CAR_UNKNOWN(0,"未知"),
|
/**
|
* 允许名单车辆
|
*/
|
EM_NON_ALLOW_LIST_CAR_NO(1,"允许名单车辆"),
|
/**
|
* 非允许名单车辆
|
*/
|
EM_NON_ALLOW_LIST_CAR_YES(2,"非允许名单车辆");
|
|
private int value;
|
|
private String note;
|
|
public String getNote() {
|
return note;
|
}
|
|
public int getValue() {
|
return value;
|
}
|
|
EM_NON_ALLOW_LIST_CAR(int givenValue, String note) {
|
this.value = givenValue;
|
this.note = note;
|
}
|
|
public static String getNoteByValue(int givenValue) {
|
for (EM_NON_ALLOW_LIST_CAR enumType : EM_NON_ALLOW_LIST_CAR.values()) {
|
if (givenValue == enumType.getValue()) {
|
return enumType.getNote();
|
}
|
}
|
return null;
|
}
|
|
public static int getValueByNote(String givenNote) {
|
for (EM_NON_ALLOW_LIST_CAR enumType : EM_NON_ALLOW_LIST_CAR.values()) {
|
if (givenNote.equals(enumType.getNote())) {
|
return enumType.getValue();
|
}
|
}
|
return -1;
|
}
|
|
public static EM_NON_ALLOW_LIST_CAR getEnum(int value) {
|
for (EM_NON_ALLOW_LIST_CAR e : EM_NON_ALLOW_LIST_CAR.values()) {
|
if (e.getValue() == value)
|
return e;
|
}
|
return EM_NON_ALLOW_LIST_CAR.EM_NON_ALLOW_LIST_CAR_UNKNOWN;
|
}
|
|
}
|