码迷,mamicode.com
首页 > 其他好文 > 详细

枚举类

时间:2019-06-18 12:38:00      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:comm   business   boot   value   null   key   static   通过   block   

package com.vx.springbootexcel.common.enums;

/**
* @author wangbs
* @date 2019/6/18 11:34
*/
public enum BusinessTypeEnum {

BUSINESS_TYPE_ENUM("1", "业务类型1"),

BUSINESS_TYPE2_ENUM("2", "业务类型2")
;
private String key;
private String value;

BusinessTypeEnum(String key, String value) {
this.key = key;
this.value = value;
}

/**
* 通过key 获取当前的枚举类型
* @param key
* @return
*/
public static BusinessTypeEnum getEnum(String key) {
for (BusinessTypeEnum temp : BusinessTypeEnum.values()) {
if (temp.getKey().equals(key)) {
return temp;
}
}
return null;
}

/**
* 根据key 获取value 就避免了空指针
* @param key
* @return
*/
public static String getValue(String key) {
for (BusinessTypeEnum temp : BusinessTypeEnum.values()) {
if (temp.getKey().equals(key)) {
return temp.getValue();
}
}
return null;
}


public String getKey() {
return key;
}

public String getValue() {
return value;
}
}

枚举类

标签:comm   business   boot   value   null   key   static   通过   block   

原文地址:https://www.cnblogs.com/xiaowangbangzhu/p/11044409.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!