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

记录个枚举

时间:2019-08-20 12:49:50      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:getc   枚举   ali   ipa   支付宝   values   ret   this   cee   

public enum PayServiceEnum {
    ALIPAY("ALIPAY","支付宝"),
    WECHAT("WECHAT","微信支付"),
    UNIONPAY("UNIONPAY","银联支付");
   private String code;
   private String desc;

    public String getCode() {
        return code;
    }

    public String getDesc() {
        return desc;
    }

    PayServiceEnum(String code, String desc) {
        this.code = code;
        this.desc = desc;
    }

    public static PayServiceEnum getByCode(String code){
        for (PayServiceEnum value : PayServiceEnum.values()) {
            if(value.getCode().equals(code)){
                return value;
            }
        }
        return  null;
    }
}

 

记录个枚举

标签:getc   枚举   ali   ipa   支付宝   values   ret   this   cee   

原文地址:https://www.cnblogs.com/leeego-123/p/11381970.html

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