package com.goafanti.common.enums; import java.util.HashMap; import java.util.Map; import org.apache.commons.lang3.StringUtils; public enum CopyrightStatus { CREATE(1, "创建"), DELIVERD(2, "派单"), SUBMIT(3, "材料提交"), ACCEPT(4, "受理"), AMEND(5, "补正"), REJECT(6, "驳回"), AUTHORIZED(7, "已下证"), CALLBACK(8, "撤销"), OTHER(9, "其他"); private CopyrightStatus(Integer code, String desc) { this.code = code; this.desc = desc; } private static Map status = new HashMap(); static { for (CopyrightStatus value : CopyrightStatus.values()) { status.put(value.getCode(), value); } } public static CopyrightStatus getStatus(Integer code) { if (containsType(code)) { return status.get(code); } return OTHER; } public static CopyrightStatus getStatus(String code) { if (StringUtils.isNumeric(code)) { return getStatus(Integer.parseInt(code)); } return OTHER; } public static boolean containsType(Integer code) { return status.containsKey(code); } private Integer code; private String desc; public Integer getCode() { return code; } public String getDesc() { return desc; } }