package com.qianwen.smartman.modules.tpm.enums; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/enums/ActionEnum.class */ public enum ActionEnum { UPDATE_MAL(1, "故障修改"), DELETE_MAL(2, "故障删除"); private final int type; private final String desc; ActionEnum(final int type, final String desc) { this.type = type; this.desc = desc; } public int getType() { return this.type; } public String getDesc() { return this.desc; } public static ActionEnum of(Integer type) { if (type == null) { return null; } ActionEnum[] values = values(); for (ActionEnum actionEnum : values) { if (actionEnum.type == type.intValue()) { return actionEnum; } } return null; } }