Enum VocabularyLanguageCode
- java.lang.Object
-
- java.lang.Enum<VocabularyLanguageCode>
-
- software.amazon.awssdk.services.connect.model.VocabularyLanguageCode
-
- All Implemented Interfaces:
Serializable,Comparable<VocabularyLanguageCode>
@Generated("software.amazon.awssdk:codegen") public enum VocabularyLanguageCode extends Enum<VocabularyLanguageCode>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VocabularyLanguageCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<VocabularyLanguageCode>knownValues()StringtoString()static VocabularyLanguageCodevalueOf(String name)Returns the enum constant of this type with the specified name.static VocabularyLanguageCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AR_AE
public static final VocabularyLanguageCode AR_AE
-
DE_CH
public static final VocabularyLanguageCode DE_CH
-
DE_DE
public static final VocabularyLanguageCode DE_DE
-
EN_AB
public static final VocabularyLanguageCode EN_AB
-
EN_AU
public static final VocabularyLanguageCode EN_AU
-
EN_GB
public static final VocabularyLanguageCode EN_GB
-
EN_IE
public static final VocabularyLanguageCode EN_IE
-
EN_IN
public static final VocabularyLanguageCode EN_IN
-
EN_US
public static final VocabularyLanguageCode EN_US
-
EN_WL
public static final VocabularyLanguageCode EN_WL
-
ES_ES
public static final VocabularyLanguageCode ES_ES
-
ES_US
public static final VocabularyLanguageCode ES_US
-
FR_CA
public static final VocabularyLanguageCode FR_CA
-
FR_FR
public static final VocabularyLanguageCode FR_FR
-
HI_IN
public static final VocabularyLanguageCode HI_IN
-
IT_IT
public static final VocabularyLanguageCode IT_IT
-
JA_JP
public static final VocabularyLanguageCode JA_JP
-
KO_KR
public static final VocabularyLanguageCode KO_KR
-
PT_BR
public static final VocabularyLanguageCode PT_BR
-
PT_PT
public static final VocabularyLanguageCode PT_PT
-
ZH_CN
public static final VocabularyLanguageCode ZH_CN
-
EN_NZ
public static final VocabularyLanguageCode EN_NZ
-
EN_ZA
public static final VocabularyLanguageCode EN_ZA
-
UNKNOWN_TO_SDK_VERSION
public static final VocabularyLanguageCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static VocabularyLanguageCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VocabularyLanguageCode c : VocabularyLanguageCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VocabularyLanguageCode valueOf(String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<VocabularyLanguageCode>
-
fromValue
public static VocabularyLanguageCode fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- VocabularyLanguageCode corresponding to the value
-
knownValues
public static Set<VocabularyLanguageCode> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownVocabularyLanguageCodes
-
-