Enum Binding.BindingType
- java.lang.Object
-
- java.lang.Enum<Binding.BindingType>
-
- com.twilio.rest.notify.v1.service.Binding.BindingType
-
- All Implemented Interfaces:
Serializable,Comparable<Binding.BindingType>
- Enclosing class:
- Binding
public static enum Binding.BindingType extends Enum<Binding.BindingType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Binding.BindingTypeforValue(String value)StringtoString()static Binding.BindingTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Binding.BindingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APN
public static final Binding.BindingType APN
-
GCM
public static final Binding.BindingType GCM
-
SMS
public static final Binding.BindingType SMS
-
FCM
public static final Binding.BindingType FCM
-
FACEBOOK_MESSENGER
public static final Binding.BindingType FACEBOOK_MESSENGER
-
ALEXA
public static final Binding.BindingType ALEXA
-
-
Method Detail
-
values
public static Binding.BindingType[] 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 (Binding.BindingType c : Binding.BindingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Binding.BindingType 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:
toStringin classEnum<Binding.BindingType>
-
forValue
public static Binding.BindingType forValue(String value)
-
-