아래와 같은 Enum 이 있다. public enum InterestGoodsCategoryType { MOTEL("MOTEL"), HOTEL("HOTEL"), PENSION("PENSION"), GUESTHOUSE("GUESTHOUSE"), ACTIVITY("ACTIVITY"); String typeCode; private static List allList; InterestGoodsCategoryType(String typeCode) { this.typeCode = typeCode; } public String getCode() { return this.typeCode; } @JsonValue public InterestGoodsCategoryType jsonValue() { return this.t..