Package network.lightsail
Enum Language
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classLanguage.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description CHINESE_SIMPLIFIEDChinese Simplified language.
CHINESE_TRADITIONALChinese Traditional language.
CZECHCzech language.
ENGLISHEnglish language.
FRENCHFrench language.
ITALIANItalian language.
JAPANESEJapanese language.
KOREANKorean language.
PORTUGUESEPortuguese language.
RUSSIANRussian language.
SPANISHSpanish language.
TURKISHTurkish language.
-
Method Summary
Modifier and Type Method Description final LanguagevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<Language>values()Returns an array containing the constants of this enum type, in the order they're declared. final StringgetCode()final EnumEntries<Language>getEntries()Represents the supported languages for the mnemonic words. -
-
Method Detail
-
valueOf
final Language valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<Language> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<Language> getEntries()
Represents the supported languages for the mnemonic words.
Each language is identified by a unique code.
-
-
-
-