Enum TranscriptLanguageCode.Value
- java.lang.Object
-
- java.lang.Enum<TranscriptLanguageCode.Value>
-
- com.assemblyai.api.resources.transcripts.types.TranscriptLanguageCode.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TranscriptLanguageCode.Value>
- Enclosing class:
- TranscriptLanguageCode
public static enum TranscriptLanguageCode.Value extends java.lang.Enum<TranscriptLanguageCode.Value>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TranscriptLanguageCode.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TranscriptLanguageCode.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EN
public static final TranscriptLanguageCode.Value EN
-
EN_AU
public static final TranscriptLanguageCode.Value EN_AU
-
EN_UK
public static final TranscriptLanguageCode.Value EN_UK
-
EN_US
public static final TranscriptLanguageCode.Value EN_US
-
ES
public static final TranscriptLanguageCode.Value ES
-
FR
public static final TranscriptLanguageCode.Value FR
-
DE
public static final TranscriptLanguageCode.Value DE
-
IT
public static final TranscriptLanguageCode.Value IT
-
PT
public static final TranscriptLanguageCode.Value PT
-
NL
public static final TranscriptLanguageCode.Value NL
-
HI
public static final TranscriptLanguageCode.Value HI
-
JA
public static final TranscriptLanguageCode.Value JA
-
ZH
public static final TranscriptLanguageCode.Value ZH
-
FI
public static final TranscriptLanguageCode.Value FI
-
KO
public static final TranscriptLanguageCode.Value KO
-
PL
public static final TranscriptLanguageCode.Value PL
-
RU
public static final TranscriptLanguageCode.Value RU
-
TR
public static final TranscriptLanguageCode.Value TR
-
UK
public static final TranscriptLanguageCode.Value UK
-
VI
public static final TranscriptLanguageCode.Value VI
-
UNKNOWN
public static final TranscriptLanguageCode.Value UNKNOWN
-
-
Method Detail
-
values
public static TranscriptLanguageCode.Value[] 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 (TranscriptLanguageCode.Value c : TranscriptLanguageCode.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TranscriptLanguageCode.Value valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-