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
Having the following java class:
public enum MyEnum { FIRST_VALUE("ab", "cd", "fg"), SECOND_VALUE("ab", "cd"), THIRD_VALUE; private List<String> values; MyEnum(String... values) { this.values = Arrays.asList(values); } public List<String> getValues() { return values; } }
Is there any way to generate this type of class based on json-schema? how should the json-schema look like?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Having the following java class:
Is there any way to generate this type of class based on json-schema? how should the json-schema look like?
The text was updated successfully, but these errors were encountered: