Enum TranscribeLanguageCode
- java.lang.Object
-
- java.lang.Enum<TranscribeLanguageCode>
-
- software.amazon.awssdk.services.chimesdkmeetings.model.TranscribeLanguageCode
-
- All Implemented Interfaces:
Serializable,Comparable<TranscribeLanguageCode>
@Generated("software.amazon.awssdk:codegen") public enum TranscribeLanguageCode extends Enum<TranscribeLanguageCode>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TranscribeLanguageCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<TranscribeLanguageCode>knownValues()StringtoString()static TranscribeLanguageCodevalueOf(String name)Returns the enum constant of this type with the specified name.static TranscribeLanguageCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EN_US
public static final TranscribeLanguageCode EN_US
-
EN_GB
public static final TranscribeLanguageCode EN_GB
-
ES_US
public static final TranscribeLanguageCode ES_US
-
FR_CA
public static final TranscribeLanguageCode FR_CA
-
FR_FR
public static final TranscribeLanguageCode FR_FR
-
EN_AU
public static final TranscribeLanguageCode EN_AU
-
IT_IT
public static final TranscribeLanguageCode IT_IT
-
DE_DE
public static final TranscribeLanguageCode DE_DE
-
PT_BR
public static final TranscribeLanguageCode PT_BR
-
JA_JP
public static final TranscribeLanguageCode JA_JP
-
KO_KR
public static final TranscribeLanguageCode KO_KR
-
ZH_CN
public static final TranscribeLanguageCode ZH_CN
-
TH_TH
public static final TranscribeLanguageCode TH_TH
-
HI_IN
public static final TranscribeLanguageCode HI_IN
-
UNKNOWN_TO_SDK_VERSION
public static final TranscribeLanguageCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static TranscribeLanguageCode[] 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 (TranscribeLanguageCode c : TranscribeLanguageCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TranscribeLanguageCode 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<TranscribeLanguageCode>
-
fromValue
public static TranscribeLanguageCode 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:
- TranscribeLanguageCode corresponding to the value
-
knownValues
public static Set<TranscribeLanguageCode> 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 knownTranscribeLanguageCodes
-
-