templates.java.enum.liquid Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of recipe-generator Show documentation
Show all versions of recipe-generator Show documentation
Generates ingredients and implementation hooks for the Recipe framework
{%- if options.javaPackage != "" -%}
package {{options.javaPackage}};
{% endif %}
public enum {{enum.name}} {
{%- capture commaNewLine %},
{% endcapture %}
{{ enum.values | join: commaNewLine}}
}