从属性文件中解析枚举
我有一个简单的键值属性文件,我需要在其中解析一个值,然后将其分配给枚举类型。最好的方法是什么?
我想到的唯一一件事就是迭代 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Enum.valueOf(或者更确切地说,它的包装器是在每个
enum
类中合成的)可以满足您的需求。Enum.valueOf (or rather, its wrapper which is synthesized in and for every
enum
class) does what you want.