Enum LanguageCodeType
- java.lang.Object
-
- java.lang.Enum<LanguageCodeType>
-
- software.amazon.awssdk.services.workdocs.model.LanguageCodeType
-
- All Implemented Interfaces:
Serializable,Comparable<LanguageCodeType>
@Generated("software.amazon.awssdk:codegen") public enum LanguageCodeType extends Enum<LanguageCodeType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LanguageCodeTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<LanguageCodeType>knownValues()StringtoString()static LanguageCodeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LanguageCodeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AR
public static final LanguageCodeType AR
-
BG
public static final LanguageCodeType BG
-
BN
public static final LanguageCodeType BN
-
DA
public static final LanguageCodeType DA
-
DE
public static final LanguageCodeType DE
-
CS
public static final LanguageCodeType CS
-
EL
public static final LanguageCodeType EL
-
EN
public static final LanguageCodeType EN
-
ES
public static final LanguageCodeType ES
-
FA
public static final LanguageCodeType FA
-
FI
public static final LanguageCodeType FI
-
FR
public static final LanguageCodeType FR
-
HI
public static final LanguageCodeType HI
-
HU
public static final LanguageCodeType HU
-
ID
public static final LanguageCodeType ID
-
IT
public static final LanguageCodeType IT
-
JA
public static final LanguageCodeType JA
-
KO
public static final LanguageCodeType KO
-
LT
public static final LanguageCodeType LT
-
LV
public static final LanguageCodeType LV
-
NL
public static final LanguageCodeType NL
-
NO
public static final LanguageCodeType NO
-
PT
public static final LanguageCodeType PT
-
RO
public static final LanguageCodeType RO
-
RU
public static final LanguageCodeType RU
-
SV
public static final LanguageCodeType SV
-
SW
public static final LanguageCodeType SW
-
TH
public static final LanguageCodeType TH
-
TR
public static final LanguageCodeType TR
-
ZH
public static final LanguageCodeType ZH
-
DEFAULT
public static final LanguageCodeType DEFAULT
-
UNKNOWN_TO_SDK_VERSION
public static final LanguageCodeType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static LanguageCodeType[] 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 (LanguageCodeType c : LanguageCodeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LanguageCodeType 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<LanguageCodeType>
-
fromValue
public static LanguageCodeType 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:
- LanguageCodeType corresponding to the value
-
knownValues
public static Set<LanguageCodeType> 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 knownLanguageCodeTypes
-
-