Package com.unfbx.chatgpt.entity.Tts
Enum TtsVoice
- java.lang.Object
-
- java.lang.Enum<TtsVoice>
-
- com.unfbx.chatgpt.entity.Tts.TtsVoice
-
- All Implemented Interfaces:
Serializable,Comparable<TtsVoice>
public enum TtsVoice extends Enum<TtsVoice>
生成不同声音的音频具体语音效果参考:https://platform.openai.com/docs/guides/text-to-speech
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TtsVoicevalueOf(String name)Returns the enum constant of this type with the specified name.static TtsVoice[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static TtsVoice[] 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 (TtsVoice c : TtsVoice.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TtsVoice 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
-
-