Enum抛出“不是枚举类型”

时间:2014-09-29 19:48:17

标签: java enums

我在生产和开发版中使用了java 1.6.0_41 。 但是,在生产这一行,即 valueOf()

List<Identifier> identifiers = new ArrayList<Identifier>(); identifiers.add(Identifier.valueOf(key));

抛出不是枚举。标识符是一个枚举。

这是堆栈跟踪。

Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: com.core.datamodel.Identifier is not an enum type at java.lang.Class.enumConstantDirectory(Unknown Source) at java.lang.Enum.valueOf(Unknown Source) <Break in method call trace. Could be due to JIT compiler inlining of method.>

我们使用zkm作为混淆器,所以也许这就是问题?

public enum Identifier {FOO}

我传入了一个关键字符串FOO,希望得到Identifier.FOO

1 个答案:

答案 0 :(得分:2)

混淆器可能已重命名(甚至删除)内部需要使用反射调用枚举类的方法。如果方法已重命名,则反射将不再起作用。

您应该尝试在没有混淆器的情况下编译和运行代码。如果这样做有效,您可以尝试通过excluding缩小原因,仅使枚举变得模糊。

特别是我怀疑enum的values()方法可能已经被混淆了。 valueOf在某个时候使用getMethod("values")查找此方法。