- 
                Notifications
    
You must be signed in to change notification settings  - Fork 435
 
Closed
Description
As far as I can tell, current implementation converts each name of enum value directly to string.
For now, I am wring @JsonValue(...) for every enum value because I always prefer kebab not only field name but also enum value string like this:
enum Value {
   @JsonValue('one-value')
   OneValue.
   @JsonValue('two-value')
   TwoValue.
}
It would be nice to have an option like field_rename for enum values(maybe enum_rename or enum_value_rename would be good).
petrnymsa, ariefwijaya, leoshusar and petoknm