专注于 JetBrains IDEA 全家桶,永久激活,教程
持续更新 PyCharm,IDEA,WebStorm,PhpStorm,DataGrip,RubyMine,CLion,AppCode 永久激活教程

将枚举内容放到Map中

将枚举内容放到Map中,简单方法如下

import java.util.Map;
import java.util.TreeMap;
import com.example.demo.utils.JacksonUtils;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
public class EnumToMapTest {

    @Test
    public void test() {
        Map<String, PayType> toMap = PayType.toMap();
        System.out.println(JacksonUtils.beanToJson(toMap));
    }

    enum PayType {

        ALIPAY("支付宝扫码", 1),
        WEIXIN_PAY("微信扫码", 2);

        PayType(String name, int value) {
            this.name = name;
            this.value = value;
        }

        public String name;
        public int value;

        public static Map<String, PayType> toMap() {
            Map<String, PayType> map = new TreeMap<>();
            PayType[] types = PayType.values();
            for (PayType type : types) {
                map.put(String.valueOf(type.value), type);
            }
            return map;
        }
    }
}

执行测试结果

92_1.png

文章永久链接:https://tech.souyunku.com/24862

未经允许不得转载:搜云库技术团队 » 将枚举内容放到Map中

JetBrains 全家桶,激活、破解、教程

提供 JetBrains 全家桶激活码、注册码、破解补丁下载及详细激活教程,支持 IntelliJ IDEA、PyCharm、WebStorm 等工具的永久激活。无论是破解教程,还是最新激活码,均可免费获得,帮助开发者解决常见激活问题,确保轻松破解并快速使用 JetBrains 软件。获取免费的破解补丁和激活码,快速解决激活难题,全面覆盖 2024/2025 版本!

联系我们联系我们