我如何“valueOf”给定类名的枚举?
假设我有一个名为 Animal 的简单枚举,定义为:
public enum Animal {
CAT, DOG
}
并且我有一个如下方法:
private static Object valueOf(String value, Class<?> classType) {
if (classType == String.class) {
return value;
}
if (classType == Integer.class) {
return Integer.parseInt(value);
}
if (classType == Long.class) {
return Long.parseLong(value);
}
if (classType == Boolean.class) {
return Boolean.parseBoolean(value);
}
// Enum resolution here
}
我可以在该方法中放入什么来返回枚举的实例,其中值是 classType?
我已经考虑过尝试:
if (classType == Enum.class) {
return Enum.valueOf((Class<Enum>)classType, value);
}
但这不起作用。
Lets say I have a simple Enum called Animal defined as:
public enum Animal {
CAT, DOG
}
and I have a method like:
private static Object valueOf(String value, Class<?> classType) {
if (classType == String.class) {
return value;
}
if (classType == Integer.class) {
return Integer.parseInt(value);
}
if (classType == Long.class) {
return Long.parseLong(value);
}
if (classType == Boolean.class) {
return Boolean.parseBoolean(value);
}
// Enum resolution here
}
What can I put inside this method to return an instance of my enum where the value is of the classType?
I have looked at trying:
if (classType == Enum.class) {
return Enum.valueOf((Class<Enum>)classType, value);
}
But that doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的
classType
不是Enum
,而是Animal
。所以,应该有效。此外,您应该使用
equals()
而不是==
来比较类实例(尽管==
在实践中会起作用,如果有的话)只有一个类加载器)。Your
classType
isn'tEnum
, it'sAnimal
. So,should work. Additionally, you ought to use
equals()
rather than==
for comparing the class instances (although==
will work in practice, if there's just one classloader around).