net.optionfactory.spring.localizedenums.LocalizedEnumResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of localized-enums Show documentation
Show all versions of localized-enums Show documentation
optionfactory-spring enums localization
package net.optionfactory.spring.localizedenums;
public class LocalizedEnumResponse {
public String category;
public String name;
public String value;
public static LocalizedEnumResponse of(String category, String name, String value) {
final var r = new LocalizedEnumResponse();
r.category = category;
r.name = name;
r.value = value;
return r;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy