嗨,我在尝试概括我为特定枚举编写的函数时遇到了麻烦:
public static enum InstrumentType {
SPOT {
public String toString() {
return "MKP";
}
},
VOLATILITY {
public String toString() {
return "VOL";
}
};
public static InstrumentType parseXML(String value) {
InstrumentType ret = InstrumentType.SPOT;
for(InstrumentType instrumentType : values()) {
if(instrumentType.toString().equalsIgnoreCase(value)) {
ret = instrumentType;
break;
}
}
return ret;
}
}
我希望在代表任何枚举的函数中添加一个新参数。我知道我应该使用模板但是我不能在函数代码中使用函数“values()”。 基本上我想要的是一个valueOf函数,它使用我定义的toString()值。
提前致谢。
答案 0 :(得分:16)
尝试更简洁的方式来编写枚举:
public static enum InstrumentType {
SPOT("MKP"),
VOLATILITY("VOL");
private final String name;
InstrumentType(String name)
{
this.name = name;
}
public String toString()
{
return this.name;
}
public static InstrumentType getValue(String s)
{
for (InstrumentType t : InstrumentType.values())
{
if (t.toString().equals(s))
return t;
}
return SOME_DEFAULT_VALUE;
}
}
这也解决了你的String问题 - >枚举。使用三个字母的首字母缩略词作为枚举名称可能更干净,但是如果您需要根据其他参数做出getValue()
决定,这是正确的方法。
答案 1 :(得分:0)
我相信Enums可以实现接口,因此您可以使用values()方法定义接口,然后将其用作参数类型。
但正如评论者所说,如果你将你的枚举命名为MKP,VOL等可能会更容易