• Java Switch中使用多字段的枚举类


    介绍

    Java8 开始 Switch中可以使用String;为了提升代码的可靠性与重用性,可以将String类型换成枚举类,每次将String入参处理成枚举类再进行匹配;

    实际开发任务中很多使用也会在Switch中使用枚举类,此处做个总结;

    1、枚举类

    MsgTypeEnums枚举类中有两个字段:tableName、msgType:

    @Getter
    public enum MsgTypeEnums {
    
        /**
         * 大件正向
         */
        BIG_TICKET_NORMAL("table1", "BIG_TICKET_NORMAL"),
    
        /**
         * 小件正向
         */
        SMALL_TICKET_NORMAL("table2", "SMALL_TICKET_NORMAL"),
    
        /**
         * 大件取消
         */
        BIG_TICKET_CANCEL("table3", "BIG_TICKET_CANCEL"),
    
        /**
         * 小件取消
         */
        SMALL_TICKET_CANCEL("table4", "SMALL_TICKET_CANCEL"),
    
        /**
         * 大件退货
         */
        BIG_TICKET_RETURN("table5", "BIG_TICKET_RETURN"),
    
        /**
         * 小件退货
         */
        SMALL_TICKET_RETURN("table6", "SMALL_TICKET_RETURN"),
    
        /**
         * 撤销交易
         */
        RESCIND_TRADE("table7", "RESCIND_TRADE");
    
        /**
         * 表名
         */
        private String tableName;
    
        /**
         * 消息类型
         */
        private String msgType;
    
        MsgTypeEnums(String tableName, String msgType) {
            this.tableName = tableName;
            this.msgType = msgType;
        }
    
        public static MsgTypeEnums getMsgType(String msgType) {
            for (MsgTypeEnums value : MsgTypeEnums.values()) {
                if (value.msgType.equalsIgnoreCase(msgType)) {
                    return value;
                }
            }
            // 理论上不会走进这里
            throw new IllegalArgumentException("unknown msgType:" + msgType);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63

    2、Switch语句

        public void testMsgType(String msgType) {
    
            MsgTypeEnums msgType = MsgTypeEnums.getMsgType(msgType);
            switch (msgType) {
                case BIG_TICKET_NORMAL:
                    // do something
                    System.out.println("----");
                    break;
                case SMALL_TICKET_NORMAL:
                    // do something
                    break;
                default:
                    throw new IllegalArgumentException("unsupported.");
            }
    
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    注意:case上使用的是枚举类型,不需要加枚举类类名;而switch输入枚举类实例。

    3、源码中的使用

    前一段时间看seata源码,隐约记得它有用过,如下;

    1> 枚举类:

    在这里插入图片描述

    2> switch语句:

    在这里插入图片描述

  • 相关阅读:
    工业外观设计中色彩如何有效运用
    jvm08
    6.1_5 Python3.x入门 P5 【基础】不可变序列(元组tuple、字符串str)
    pytorch基础学习(2)
    杰理-watch-更新状态到APP
    第2-4-2章 规则引擎Drools入门案例-业务规则管理系统-组件化-中台
    CSS Id和Class选择器
    Redis 线程模型
    谷粒商城笔记
    数字矩形(1)
  • 原文地址:https://blog.csdn.net/Saintmm/article/details/126750804