We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I notice Selma can't automatically map a String to an Enum or an Enum to a String. We have to create a CustomMapper to do something like that :
public String enumToString(MyEnum e) { return e.toString(); } public MyEnum stringToEnum(String s) { return MyEnum.valueOf(s); }
This is useless code, so I suggest to add this as a feature in Selma. I can try to do it, if someone can review PR.
BR
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I notice Selma can't automatically map a String to an Enum or an Enum to a String. We have to create a CustomMapper to do something like that :
This is useless code, so I suggest to add this as a feature in Selma. I can try to do it, if someone can review PR.
BR
The text was updated successfully, but these errors were encountered: