Package com.twilio.twiml.voice
Enum Dial.RingTone
- java.lang.Object
-
- java.lang.Enum<Dial.RingTone>
-
- com.twilio.twiml.voice.Dial.RingTone
-
- All Implemented Interfaces:
Serializable
,Comparable<Dial.RingTone>
- Enclosing class:
- Dial
public static enum Dial.RingTone extends Enum<Dial.RingTone>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static Dial.RingTone
valueOf(String name)
Returns the enum constant of this type with the specified name.static Dial.RingTone[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AT
public static final Dial.RingTone AT
-
AU
public static final Dial.RingTone AU
-
BG
public static final Dial.RingTone BG
-
BR
public static final Dial.RingTone BR
-
BE
public static final Dial.RingTone BE
-
CH
public static final Dial.RingTone CH
-
CL
public static final Dial.RingTone CL
-
CN
public static final Dial.RingTone CN
-
CZ
public static final Dial.RingTone CZ
-
DE
public static final Dial.RingTone DE
-
DK
public static final Dial.RingTone DK
-
EE
public static final Dial.RingTone EE
-
ES
public static final Dial.RingTone ES
-
FI
public static final Dial.RingTone FI
-
FR
public static final Dial.RingTone FR
-
GR
public static final Dial.RingTone GR
-
HU
public static final Dial.RingTone HU
-
IL
public static final Dial.RingTone IL
-
IN
public static final Dial.RingTone IN
-
IT
public static final Dial.RingTone IT
-
LT
public static final Dial.RingTone LT
-
JP
public static final Dial.RingTone JP
-
MX
public static final Dial.RingTone MX
-
MY
public static final Dial.RingTone MY
-
NL
public static final Dial.RingTone NL
-
NO
public static final Dial.RingTone NO
-
NZ
public static final Dial.RingTone NZ
-
PH
public static final Dial.RingTone PH
-
PL
public static final Dial.RingTone PL
-
PT
public static final Dial.RingTone PT
-
RU
public static final Dial.RingTone RU
-
SE
public static final Dial.RingTone SE
-
SG
public static final Dial.RingTone SG
-
TH
public static final Dial.RingTone TH
-
UK
public static final Dial.RingTone UK
-
US
public static final Dial.RingTone US
-
US_OLD
public static final Dial.RingTone US_OLD
-
TW
public static final Dial.RingTone TW
-
VE
public static final Dial.RingTone VE
-
ZA
public static final Dial.RingTone ZA
-
-
Method Detail
-
values
public static Dial.RingTone[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Dial.RingTone c : Dial.RingTone.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Dial.RingTone valueOf(String name)
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.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<Dial.RingTone>
-
-