Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
gson 2.2.4 でこのような単純な列挙型をシリアル化および逆シリアル化するにはどうすればよいですか?
public enum Color { RED, BLUE, YELLOW; }
これも問題なく動作しますが、どのバージョンの GSON からのものかわかりません:
public enum OrderLineTimeRegistrationStatus { None(0), Started(1), Paused(2); private int value; private OrderLineTimeRegistrationStatus(int value) { this.value=value; } public int getValue() { return(value); } }