package com.qianwen.smartman.modules.fms.enums; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/enums/ScheStateEnum.class */ public enum ScheStateEnum { WILL_GO(1, "将要去"), ARRIVE(2, "到达"); private final Integer type; private final String desc; ScheStateEnum(final Integer type, final String desc) { this.type = type; this.desc = desc; } public Integer getType() { return this.type; } public String getDesc() { return this.desc; } public static ScheStateEnum of(Integer type) { if (type == null) { return null; } ScheStateEnum[] values = values(); for (ScheStateEnum typeEnum : values) { if (typeEnum.type.equals(type)) { return typeEnum; } } return null; } }