forked from loafle/openapi-generator-original
25 lines
709 B
Plaintext
25 lines
709 B
Plaintext
/**
|
|
* {{^description}}Gets or Sets {{{name}}}{{/description}}{{#description}}{{{description}}}{{/description}}
|
|
*/
|
|
public enum {{#datatypeWithEnum}}{{.}}{{/datatypeWithEnum}}{{^datatypeWithEnum}}{{classname}}{{/datatypeWithEnum}} {
|
|
{{#allowableValues}}
|
|
{{#enumVars}}
|
|
{{{name}}}({{{value}}}){{^-last}},
|
|
|
|
{{/-last}}{{#-last}};
|
|
{{/-last}}
|
|
{{/enumVars}}
|
|
{{/allowableValues}}
|
|
private {{datatype}} value;
|
|
|
|
{{#datatypeWithEnum}}{{.}}{{/datatypeWithEnum}}{{^datatypeWithEnum}}{{classname}}{{/datatypeWithEnum}}({{datatype}} value) {
|
|
this.value = value;
|
|
}
|
|
|
|
@Override
|
|
@JsonValue
|
|
public String toString() {
|
|
return String.valueOf(value);
|
|
}
|
|
}
|