从属性文件中解析枚举

发布于 2024-08-03 17:57:13 字数 113 浏览 1 评论 0原文

我有一个简单的键值属性文件,我需要在其中解析一个值,然后将其分配给枚举类型。最好的方法是什么?

我想到的唯一一件事就是迭代 enums.toString 的所有可能值,看看它是否等于其中任何一个。

I have a simple key-value property file where I need to parse a value which is then to be assigned to an enum type. What is the best way to do this?

The only thing that comes up to my mind is something like iterating through all the possible values of the enums.toString and see if it equals any of them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只有一腔孤勇 2024-08-10 17:57:13

Enum.valueOf(或者更确切地说,它的包装器是在每个 enum 类中合成的)可以满足您的需求。

enum Color { RED, GREEN, BLUE }

// somewhere in your code
String colorName = "GREEN";
try {
    Color color = Color.valueOf(colorName);
} catch (IllegalArgumentException e){
    // colorName was not the name of a member of the enum
}

Enum.valueOf (or rather, its wrapper which is synthesized in and for every enum class) does what you want.

enum Color { RED, GREEN, BLUE }

// somewhere in your code
String colorName = "GREEN";
try {
    Color color = Color.valueOf(colorName);
} catch (IllegalArgumentException e){
    // colorName was not the name of a member of the enum
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文