我正在使用 Gson,我想序列化并显示一个枚举。
我的枚举:
Tuple{
SINGLE(1,"Single"),
DOUBLE(2,"Double")
Tuple(int asInt,String properName){
this.asInt=asInt;
this.fullName=fullName;
}
public int AsInt;
public String fullname;
}
我想要这样的输出:
(SINGLE:{asInt:1,fullName:'Single'},DOUBLE:{asInt:2,fullname:'Double'})
我该怎么做呢?