com.tencentcloudapi.common.profile.Language Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
package com.tencentcloudapi.common.profile;
public enum Language {
ZH_CN("zh-CN"),
EN_US("en-US");
private final String lang;
Language(String lang) {
this.lang = lang;
}
@Override
public String toString() {
return this.lang;
}
public String getValue() {
return this.lang;
}
}