public static enum SynthesisRequest.Mode extends Enum<SynthesisRequest.Mode>
| Enum Constant and Description |
|---|
MARKDOWN
Speech Markdown synthesis.
|
SSML
Synthesis using the subset of SSML supported by Spokestack.
|
TEXT
Plain-text synthesis.
|
| Modifier and Type | Method and Description |
|---|---|
static SynthesisRequest.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SynthesisRequest.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SynthesisRequest.Mode TEXT
public static final SynthesisRequest.Mode MARKDOWN
public static final SynthesisRequest.Mode SSML
public static SynthesisRequest.Mode[] values()
for (SynthesisRequest.Mode c : SynthesisRequest.Mode.values()) System.out.println(c);
public static SynthesisRequest.Mode 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 nullCopyright © 2021. All rights reserved.