这与我之前在这里问过的上一个问题有关
我正在尝试解析相同的JSON,但是现在我对类做了一些更改。
{
"lower": 20,
"upper": 40,
"delimiter": " ",
"scope": ["${title}"]
}
我的课程现在看起来像:
public class TruncateElement {
private int lower;
private int upper;
private String delimiter;
private List<AttributeScope> scope;
// getters and setters
}
public enum AttributeScope {
TITLE("${title}"),
DESCRIPTION("${description}"),
private String scope;
AttributeScope(String scope) {
this.scope = scope;
}
public String getScope() {
return this.scope;
}
}
此代码引发异常,
com.google.gson.JsonParseException: The JsonDeserializer EnumTypeAdapter failed to deserialized json object "${title}" given the type class com.amazon.seo.attribute.template.parse.data.AttributeScope
at
可以理解,因为根据我上一个问题的解决方案,GSON希望将Enum对象实际创建为
${title}("${title}"),
${description}("${description}");
但是,由于从语法上讲这是不可能的,因此推荐的解决方案和解决方法是什么?