All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.itroadlabs.apicross.springmvc.templates.dataModelPropertyDefaultValueOptional.hbs Maven / Gradle / Ivy

The newest version!
{{#if primitive}}
    {{#if defaultValueNotNull}}
        {{#if string}}
            = JsonNullable.of("{{{defaultValue}}}")
        {{else}}
            = JsonNullable.of({{{defaultValue}}}{{#if integer}}{{#if format}}{{#eq format 'int64'}}L{{/eq}}{{else}}L{{/if}}{{/if}})
        {{/if}}
    {{else}}
        = JsonNullable.undefined()
    {{/if}}
{{else}}
    = JsonNullable.undefined()
{{/if}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy