Enum VoiceRegion
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum VoiceRegion extends Enum<VoiceRegion>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
VoiceRegion.Companion
-
Field Summary
Fields Modifier and Type Field Description private final String
id
private final String
visibleName
private final String
name
private final Integer
ordinal
private final EnumEntries<VoiceRegion>
entries
-
Enum Constant Summary
Enum Constants Enum Constant Description AMSTERDAM
ATLANTA
BRAZIL
BUCHAREST
BUENOS_AIRES
DUBAI
EUROPE
FINLAND
FRANKFURT
HONGKONG
INDIA
JAPAN
LONDON
MADRID
MILAN
MONTREAL
NEWARK
OREGON
ROTTERDAM
RUSSIA
SANTA_CLARA
SANTIAGO
SEATTLE
SINGAPORE
SOUTH_AFRICA
SOUTH_KOREA
ST_PETE
STOCKHOLM
SYDNEY
TEL_AVIV
US_CENTRAL
US_EAST
US_SOUTH
US_WEST
UNKNOWN
-
Method Summary
Modifier and Type Method Description String
toString()
final VoiceRegion
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<VoiceRegion>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final String
getId()
final String
getVisibleName()
final EnumEntries<VoiceRegion>
getEntries()
-
-
-
Method Detail
-
valueOf
final VoiceRegion valueOf(String value)
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.)
-
values
final Array<VoiceRegion> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getVisibleName
final String getVisibleName()
-
getEntries
final EnumEntries<VoiceRegion> getEntries()
-
-