String fieldName = (fieldchild.getAttribute("Name")); //gives field name : opcode
String fieldCustomID = (fieldchild.getAttribute("ID")); //gives id: 2022
String classTypeofField = IdNameMappingList.get(fieldCustomID).toString(); //give class name OpCodeClass
FieldSpec fieldSpec = FieldSpec.builder(**some code**, fieldName)
.build();
应该给出类似的东西:
OpCodeClass opcode;
任何其他解决方法也受到赞赏。