Enum RealtimeTranscriptType.Value
- java.lang.Object
-
- java.lang.Enum<RealtimeTranscriptType.Value>
-
- com.assemblyai.api.resources.realtime.types.RealtimeTranscriptType.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RealtimeTranscriptType.Value>
- Enclosing class:
- RealtimeTranscriptType
public static enum RealtimeTranscriptType.Value extends java.lang.Enum<RealtimeTranscriptType.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FINAL_TRANSCRIPTPARTIAL_TRANSCRIPTUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RealtimeTranscriptType.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RealtimeTranscriptType.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARTIAL_TRANSCRIPT
public static final RealtimeTranscriptType.Value PARTIAL_TRANSCRIPT
-
FINAL_TRANSCRIPT
public static final RealtimeTranscriptType.Value FINAL_TRANSCRIPT
-
UNKNOWN
public static final RealtimeTranscriptType.Value UNKNOWN
-
-
Method Detail
-
values
public static RealtimeTranscriptType.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 (RealtimeTranscriptType.Value c : RealtimeTranscriptType.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 RealtimeTranscriptType.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
-
-