org.teamapps.pojo.template.Enum.txt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of universal-db Show documentation
Show all versions of universal-db Show documentation
Ultra fast TeamApps database
package {package};
public enum {type} {
{enumValues}
;
private final String title;
{type}(String title) {
this.title = title;
}
public String getTitle() {
return title;
}
}