Package com.twilio.twiml.voice
Enum Pay.Language
- java.lang.Object
-
- java.lang.Enum<Pay.Language>
-
- com.twilio.twiml.voice.Pay.Language
-
- All Implemented Interfaces:
Serializable
,Comparable<Pay.Language>
- Enclosing class:
- Pay
public static enum Pay.Language extends Enum<Pay.Language>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static Pay.Language
valueOf(String name)
Returns the enum constant of this type with the specified name.static Pay.Language[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DE_DE
public static final Pay.Language DE_DE
-
EN_AU
public static final Pay.Language EN_AU
-
EN_CA
public static final Pay.Language EN_CA
-
EN_GB
public static final Pay.Language EN_GB
-
EN_IN
public static final Pay.Language EN_IN
-
EN_IE
public static final Pay.Language EN_IE
-
EN_NZ
public static final Pay.Language EN_NZ
-
EN_PH
public static final Pay.Language EN_PH
-
EN_ZA
public static final Pay.Language EN_ZA
-
EN_US
public static final Pay.Language EN_US
-
ES_ES
public static final Pay.Language ES_ES
-
ES_US
public static final Pay.Language ES_US
-
FR_CA
public static final Pay.Language FR_CA
-
FR_FR
public static final Pay.Language FR_FR
-
IT_IT
public static final Pay.Language IT_IT
-
-
Method Detail
-
values
public static Pay.Language[] 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 (Pay.Language c : Pay.Language.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Pay.Language 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<Pay.Language>
-
-