public enum VoiceName extends java.lang.Enum<VoiceName>
Call
in a TalkRequest
.Enum Constant and Description |
---|
AGNIESZKA |
AMY |
ASTRID |
BRIAN |
CARLA |
CARMEN |
CELINE |
CHANTAL |
CHIPMUNK |
CONCHITA |
CRISTIANO |
DORA |
EMMA |
ENRIQUE |
ERIC |
EWA |
FILIZ |
GERAINT |
GIORGIO |
GWYNETH |
HANS |
INES |
IVY |
JACEK |
JAN |
JENNIFER |
JOEY |
JUSTIN |
KARL |
KENDRA |
KIMBERLY |
LIV |
LOTTE |
MADS |
MAJA |
MARLENE |
MATHIEU |
MAXIM |
MIGUEL |
NAJA |
NICOLE |
PENELOPE |
RAVEENA |
RICARDO |
RUBEN |
RUSSELL |
SALLI |
TATYANA |
VITORIA |
Modifier and Type | Method and Description |
---|---|
static VoiceName |
fromString(java.lang.String name) |
java.lang.String |
toString() |
static VoiceName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VoiceName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static VoiceName[] values()
for (VoiceName c : VoiceName.values()) System.out.println(c);
public static VoiceName valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static VoiceName fromString(java.lang.String name)