これは、以前にここで質問した前の質問に関連しています
同じ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}");
しかし、これは構文的に不可能であるため、推奨される解決策、回避策は何ですか?