枚举类 Qwen3TTSFlashVoice
- 所有已实现的接口:
Serializable,Comparable<Qwen3TTSFlashVoice>,Constable
Predefined voices for Qwen3 TTS Flash / Realtime models.
The voiceId values correspond to the voice parameter
accepted by qwen3-tts-flash and qwen3-tts-flash-realtime.
-
嵌套类概要
嵌套类从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
枚举常量概要
枚举常量枚举常量说明芊悦 (Cherry) - A sunny, positive, friendly, and natural young woman.北京-晓东 (Dylan) - A teenage boy who grew up in the hutongs of Beijing.墨讲师 (Elias) - A voice that maintains academic rigor while using storytelling techniques to transform complex knowledge into digestible cognitive modules.四川-程川 (Eric) - An unconventional man from Chengdu, Sichuan.晨煦 (Ethan) - A bright, warm, energetic, and vibrant male voice with a standard Mandarin pronunciation and a slight northern accent.上海-阿珍 (Jada) - An energetic woman from Shanghai.詹妮弗 (Jennifer) - A premium, cinematic American English female voice.卡捷琳娜 (Katerina) - A mature female voice with a rich rhythm and lingering resonance.粤语-阿清 (Kiki) - A sweet female companion from Hong Kong.南京-老李 (li) - Patient male yoga instructor.陕西-秦川 (Marcus) - A voice that is broad-faced and brief-spoken, sincere-hearted and deep-voiced—the authentic flavor of Shaanxi.不吃鱼 (Nofish) - A male designer who cannot pronounce retroflex sounds.天津-李彼得 (Peter) - The voice of a professional straight man in Tianjin crosstalk.粤语-阿强 (Rocky) - The voice of the humorous and witty Rocky, here for online chatting.闽南-阿杰 (Roy) - The voice of a humorous, straightforward, and lively young Taiwanese man.甜茶 (Ryan) - A rhythmic and dramatic voice with a sense of realism and tension.四川-晴儿 (Sunny) - The voice of a Sichuan girl whose sweetness melts your heart. -
方法概要
修饰符和类型方法说明static Qwen3TTSFlashVoicefromVoiceId(String voiceId) Find a voice enum by its voiceId (case-insensitive).Short description of the voice characteristics.Human friendly display name (typically Chinese).Gender of this voice (for informational / filtering purposes).Voice id to use as thevoiceparameter in DashScope TTS requests.static Qwen3TTSFlashVoicerandom()Pick a random voice usingThreadLocalRandom.static Qwen3TTSFlashVoicePick a random voice using the providedRandominstance.static Qwen3TTSFlashVoice返回带有指定名称的该类的枚举常量。static Qwen3TTSFlashVoice[]values()返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同
-
枚举常量详细资料
-
CHERRY
芊悦 (Cherry) - A sunny, positive, friendly, and natural young woman. -
ETHAN
晨煦 (Ethan) - A bright, warm, energetic, and vibrant male voice with a standard Mandarin pronunciation and a slight northern accent. -
NOFISH
不吃鱼 (Nofish) - A male designer who cannot pronounce retroflex sounds. -
JENNIFER
詹妮弗 (Jennifer) - A premium, cinematic American English female voice. -
RYAN
甜茶 (Ryan) - A rhythmic and dramatic voice with a sense of realism and tension. -
KATERINA
卡捷琳娜 (Katerina) - A mature female voice with a rich rhythm and lingering resonance. -
ELIAS
墨讲师 (Elias) - A voice that maintains academic rigor while using storytelling techniques to transform complex knowledge into digestible cognitive modules. -
JADA
上海-阿珍 (Jada) - An energetic woman from Shanghai. -
DYLAN
北京-晓东 (Dylan) - A teenage boy who grew up in the hutongs of Beijing. -
SUNNY
四川-晴儿 (Sunny) - The voice of a Sichuan girl whose sweetness melts your heart. -
LI
南京-老李 (li) - Patient male yoga instructor. -
MARCUS
陕西-秦川 (Marcus) - A voice that is broad-faced and brief-spoken, sincere-hearted and deep-voiced—the authentic flavor of Shaanxi. -
ROY
闽南-阿杰 (Roy) - The voice of a humorous, straightforward, and lively young Taiwanese man. -
PETER
天津-李彼得 (Peter) - The voice of a professional straight man in Tianjin crosstalk. -
ROCKY
粤语-阿强 (Rocky) - The voice of the humorous and witty Rocky, here for online chatting. -
KIKI
粤语-阿清 (Kiki) - A sweet female companion from Hong Kong. -
ERIC
四川-程川 (Eric) - An unconventional man from Chengdu, Sichuan.
-
-
方法详细资料
-
values
返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同- 返回:
- 包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
-
valueOf
返回带有指定名称的该类的枚举常量。 字符串必须与用于声明该类的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- 如果该枚举类没有带有指定名称的常量NullPointerException- 如果参数为空值
-
getVoiceId
Voice id to use as thevoiceparameter in DashScope TTS requests. -
getDisplayName
Human friendly display name (typically Chinese). -
getGender
Gender of this voice (for informational / filtering purposes). -
getDescription
Short description of the voice characteristics. -
fromVoiceId
Find a voice enum by its voiceId (case-insensitive).- 参数:
voiceId- the voice id string, e.g. "Cherry"- 返回:
- matching enum value, or
nullif not found
-
random
Pick a random voice usingThreadLocalRandom. -
random
Pick a random voice using the providedRandominstance.
-