
ru.sms_activate.client_enums.SMSActivateLanguage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SMSActivateApi Show documentation
Show all versions of SMSActivateApi Show documentation
Lib for working with sms activate API.
package ru.sms_activate.client_enums;
import org.jetbrains.annotations.NotNull;
public enum SMSActivateLanguage {
RUSSIAN("ru"),
ENGLISH("eng"),
CHINESE("chinese");
/**
* Short name language.
*/
private final String shortName;
/**
* Constructor smsactivate language supported.
* @param shortName short name language.
*/
SMSActivateLanguage(@NotNull String shortName) {
this.shortName = shortName;
}
/**
* Returns the name of language.
*
* @return name of language.
*/
@NotNull
public String getShortName() {
return shortName;
}
@Override
public String toString() {
return "SMSActivateLanguage{" +
"shortName='" + shortName + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy