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

templates.java.builder.mustache Maven / Gradle / Ivy

There is a newer version: 0.113
Show newest version
    public static class Builder {

{{#properties}}        private {{>type}} {{&javaName}};
{{/properties}}

{{#properties}}        public Builder with{{&capitalisedName}}({{>type}} {{&javaName}}) {
            this.{{&javaName}} = {{&javaName}};
            return this;
        }

{{/properties}}
        public {{&className}} build() {
            return new {{&className}}(
{{#properties}}                    {{&javaName}}{{^last}},{{/last}}
{{/properties}}            );
        }

    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy