คำถามนี้เกี่ยวข้องกับคำถามก่อนหน้านี้ที่ฉันถามก่อนหน้านี้
ฉันพยายามแยกวิเคราะห์ 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}");
แต่เนื่องจากสิ่งนี้เป็นไปไม่ได้ในเชิงไวยากรณ์คำแนะนำวิธีแก้ปัญหาที่แนะนำคืออะไร?