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

com.rbmhtechnology.vind.annotations.language.Language Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.rbmhtechnology.vind.annotations.language;

/**
 * Supported Languages
 */
public enum Language {

    German("de"),
    English("en"),
    Spanish("es"),
    None(null);

    private final String code;

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

    public String getLangCode() {
        return code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy