Package com.unfbx.chatgpt.entity.whisper
Enum Whisper.ResponseFormat
- java.lang.Object
-
- java.lang.Enum<Whisper.ResponseFormat>
-
- com.unfbx.chatgpt.entity.whisper.Whisper.ResponseFormat
-
- All Implemented Interfaces:
Serializable,Comparable<Whisper.ResponseFormat>
- Enclosing class:
- Whisper
public static enum Whisper.ResponseFormat extends Enum<Whisper.ResponseFormat>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JSONSRTTEXTVERBOSE_JSONVTT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Whisper.ResponseFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static Whisper.ResponseFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JSON
public static final Whisper.ResponseFormat JSON
-
TEXT
public static final Whisper.ResponseFormat TEXT
-
SRT
public static final Whisper.ResponseFormat SRT
-
VERBOSE_JSON
public static final Whisper.ResponseFormat VERBOSE_JSON
-
VTT
public static final Whisper.ResponseFormat VTT
-
-
Method Detail
-
values
public static Whisper.ResponseFormat[] 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 (Whisper.ResponseFormat c : Whisper.ResponseFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Whisper.ResponseFormat 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
-
-