![JAR search and dependency download from the Maven repository](/logo.png)
templates.java.builder.mustache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-kotlin-schema-codegen Show documentation
Show all versions of json-kotlin-schema-codegen Show documentation
Code generation from JSON Schema to Kotlin or Java
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