this.values = values;
}
public IString toJSON(IValue value) {
IValueAdapter adap = new IValueAdapter();
Gson gson = new GsonBuilder()
.registerTypeAdapter(IValue.class, adap)
.enableComplexMapKeySerialization()
.setDateFormat(DateFormat.LONG)
.setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE)