最佳答案
这与我之前在这里提出的一个问题有关
我尝试解析相同的 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}");
但是,既然这在语法上是不可能的,那么推荐的解决方案是什么,变通方法?