public enum SpeechSynthesisAudioFormat extends Enum<SpeechSynthesisAudioFormat>
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static SpeechSynthesisAudioFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpeechSynthesisAudioFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpeechSynthesisAudioFormat PCM
public static final SpeechSynthesisAudioFormat WAV
public static final SpeechSynthesisAudioFormat MP3
public static SpeechSynthesisAudioFormat[] values()
for (SpeechSynthesisAudioFormat c : SpeechSynthesisAudioFormat.values()) System.out.println(c);
public static SpeechSynthesisAudioFormat valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getValue()
Copyright © 2023. All rights reserved.