forked from loafle/openapi-generator-original
45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
/**
|
|
* {{^description}}Gets or Sets {{{name}}}{{/description}}{{#description}}{{{description}}}{{/description}}
|
|
*/
|
|
public enum {{#datatypeWithEnum}}{{{.}}}{{/datatypeWithEnum}}{{^datatypeWithEnum}}{{classname}}{{/datatypeWithEnum}} {
|
|
{{#gson}}
|
|
{{#allowableValues}}
|
|
{{#enumVars}}
|
|
@SerializedName({{#isInteger}}"{{/isInteger}}{{#isDouble}}"{{/isDouble}}{{#isLong}}"{{/isLong}}{{#isFloat}}"{{/isFloat}}{{{value}}}{{#isInteger}}"{{/isInteger}}{{#isDouble}}"{{/isDouble}}{{#isLong}}"{{/isLong}}{{#isFloat}}"{{/isFloat}})
|
|
{{{name}}}({{{value}}}){{^-last}},
|
|
{{/-last}}{{#-last}};{{/-last}}
|
|
{{/enumVars}}
|
|
{{/allowableValues}}
|
|
{{/gson}}
|
|
{{^gson}}
|
|
{{#allowableValues}}
|
|
{{#enumVars}}
|
|
{{{name}}}({{{value}}}){{^-last}},
|
|
{{/-last}}{{#-last}};{{/-last}}
|
|
{{/enumVars}}
|
|
{{/allowableValues}}
|
|
{{/gson}}
|
|
|
|
private {{{dataType}}} value;
|
|
|
|
{{#datatypeWithEnum}}{{{.}}}{{/datatypeWithEnum}}{{^datatypeWithEnum}}{{classname}}{{/datatypeWithEnum}}({{{dataType}}} value) {
|
|
this.value = value;
|
|
}
|
|
|
|
@Override
|
|
@JsonValue
|
|
public String toString() {
|
|
return String.valueOf(value);
|
|
}
|
|
|
|
@JsonCreator
|
|
public static {{#datatypeWithEnum}}{{{.}}}{{/datatypeWithEnum}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} fromValue(String text) {
|
|
for ({{#datatypeWithEnum}}{{{.}}}{{/datatypeWithEnum}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} b : {{#datatypeWithEnum}}{{{.}}}{{/datatypeWithEnum}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}}.values()) {
|
|
if (String.valueOf(b.value).equals(text)) {
|
|
return b;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|