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

pl.fhframework.docs.i18n.Language Maven / Gradle / Ivy

package pl.fhframework.docs.i18n;

public enum Language {
    PL("pl"), ENG("en");

    private String value;

    Language(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy