溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java枚舉類在生產(chǎn)環(huán)境中怎么使用

發(fā)布時(shí)間:2022-02-07 10:13:30 來源:億速云 閱讀:108 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要講解了“Java枚舉類在生產(chǎn)環(huán)境中怎么使用”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Java枚舉類在生產(chǎn)環(huán)境中怎么使用”吧!

    使用

    大體分為確定業(yè)務(wù)場(chǎng)景狀態(tài)、定義枚舉類、自定義查詢方法、測(cè)試效果等幾個(gè)部分。

    1、確定業(yè)務(wù)場(chǎng)景狀態(tài)

    以我工作中實(shí)際的項(xiàng)目為例,智慧醫(yī)院在掛號(hào)、門診繳費(fèi)時(shí)需要使用支付功能,我們目前實(shí)現(xiàn)了以下幾種支付形式:微信小程序支付、微信H5支付、支付寶小程序支付、支付寶生活號(hào)支付、微信醫(yī)保支付。
    那么,我們就可以針對(duì)這幾種支付形式定義一個(gè)枚舉類專門維護(hù),今后需要新增、修改以及刪除時(shí),只需要修改這個(gè)枚舉類即可。

    2、定義枚舉類

    public enum PayTypeEnum {
     
        WEI_XIN_MINI_APP("1", "wxma", "微信小程序支付"),
     
        WEI_XIN_H5("2", "wxh6", "微信H5支付"),
     
        ZFB_MINI_APP("3", "zfbma", "支付寶小程序支付"),
     
        ZFB_H5("4", "zfbh6", "支付寶生活號(hào)支付"),
     
        WEI_XIN_MEDICAL("5", "wxmedical", "微信醫(yī)保支付");
     
        private final String id;
        private final String code;
        private final String label;
     
        PayTypeEnum(final String id, final String code, final String label) {
            this.id = id;
            this.code = code;
            this.label = label;
        }
     
        public String getId() {
            return id;
        }
     
        public String getCode() {
            return code;
        }
     
        public String getLabel() {
            return label;
        }
     
    }

    3、自定義查詢方法

    枚舉類我們定義了id、code、label,那么我們使用過程中可能需要根據(jù)id獲取枚舉值、根據(jù)code獲取枚舉值(本人大部分時(shí)候都定義的這兩個(gè)),甚至根據(jù)label獲取枚舉值,因此可以根據(jù)需要自定義自己的查詢方法。

    /**
     * 根據(jù)id獲取枚舉對(duì)象
     * @param id 
     */
    public static PayTypeEnum findById(String id) {
        for (PayTypeEnum type : PayTypeEnum.values()) {
            if (type.getId().equals(id))
                return type;
        }
        return null;
    }
     
    /**
     * 根據(jù)code獲取枚舉對(duì)象
     * @param code 
     */
    public static PayTypeEnum findByCode(String code) {
        for (PayTypeEnum type : PayTypeEnum.values()) {
            if (type.getCode().equals(code))
                return type;
        }
        return null;
    }

    為了更完善,我們還可以再定義一個(gè)檢查枚舉類型的方法。

    /**
     * 檢查支付類型是否有效
     * @param id 
     */
    public static void check(String id) {
        if (StringUtils.isEmpty(id)) {
            throw new BadRequestAlertException("無效的支付類型", "PayTypeEnum", "無效的支付類型");
        }
        for (PayTypeEnum type : PayTypeEnum.values()) {
            if (type.getId().equals(id)) {
                return;
            }
        }
        throw new BadRequestAlertException("無效的支付類型", "PayTypeEnum", "無效的支付類型");
    }

    最終代碼如下:

    import com.web.rest.errors.BadRequestAlertException;
    import org.springframework.util.StringUtils;
     
    public enum PayTypeEnum {
     
        WEI_XIN_MINI_APP("1", "wxma", "微信小程序支付"),
     
        WEI_XIN_H5("2", "wxh6", "微信H5支付"),
     
        ZFB_MINI_APP("3", "zfbma", "支付寶小程序支付"),
     
        ZFB_H5("4", "zfbh6", "支付寶生活號(hào)支付"),
     
        WEI_XIN_MEDICAL("5", "wxmedical", "微信醫(yī)保支付");
     
        private final String id;
        private final String code;
        private final String label;
     
        PayTypeEnum(final String id, final String code, final String label) {
            this.id = id;
            this.code = code;
            this.label = label;
        }
     
        public String getId() {
            return id;
        }
     
        public String getCode() {
            return code;
        }
     
        public String getLabel() {
            return label;
        }
     
        /**
         * 根據(jù)id獲取枚舉對(duì)象
         * @param id 
         */
        public static PayTypeEnum findById(String id) {
            for (PayTypeEnum type : PayTypeEnum.values()) {
                if (type.getId().equals(id))
                    return type;
            }
            return null;
        }
     
        /**
         * 根據(jù)code獲取枚舉對(duì)象
         * @param code
         */
        public static PayTypeEnum findByCode(String code) {
            for (PayTypeEnum type : PayTypeEnum.values()) {
                if (type.getCode().equals(code))
                    return type;
            }
            return null;
        }
     
        /**
         * 檢查支付類型是否有效
         * @param id 
         */
        public static void check(String id) {
            if (StringUtils.isEmpty(id)) {
                throw new BadRequestAlertException("無效的支付類型", "PayTypeEnum", "無效的支付類型");
            }
            for (PayTypeEnum type : PayTypeEnum.values()) {
                if (type.getId().equals(id)) {
                    return;
                }
            }
            throw new BadRequestAlertException("無效的支付類型", "PayTypeEnum", "無效的支付類型");
        }
     
    }

    4、測(cè)試效果

    public static void main(String[] args) {
     
       System.out.println("============= 獲取枚舉類的值 =============");
       System.out.println("獲取id:" + PayTypeEnum.WEI_XIN_MINI_APP.getId());
       System.out.println("獲取code:" + PayTypeEnum.WEI_XIN_MINI_APP.getCode());
       System.out.println("獲取label:" + PayTypeEnum.WEI_XIN_MINI_APP.getLabel());
     
     
       System.out.println("============= 根據(jù)自定義的查詢方法獲取值 =============");
       System.out.println("根據(jù)id獲取枚舉對(duì)象:" + PayTypeEnum.findById("3"));
       System.out.println("根據(jù)code獲取枚舉對(duì)象:" + PayTypeEnum.findByCode("zfbma"));
     
     
       System.out.println("============= 類型有效性檢查 =============");
       System.out.print("檢查1:");
       PayTypeEnum.check("1");
       System.out.println();
       System.out.print("檢查2:");
       PayTypeEnum.check("999");
    }

    打印如下:

    ============= 獲取枚舉類的值 =============
    獲取id:1
    獲取code:wxma
    獲取label:微信小程序支付
    ============= 根據(jù)自定義的查詢方法獲取值 =============
    根據(jù)id獲取枚舉對(duì)象:ZFB_MINI_APP
    根據(jù)code獲取枚舉對(duì)象:ZFB_MINI_APP
    ============= 類型有效性檢查 =============
    檢查1:
    檢查2:無效的支付類型
     
    Process finished with exit code 0

    感謝各位的閱讀,以上就是“Java枚舉類在生產(chǎn)環(huán)境中怎么使用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)Java枚舉類在生產(chǎn)環(huán)境中怎么使用這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

    向AI問一下細(xì)節(jié)

    免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI