Package com.restfb.types.whatsapp
Enum WhatsAppMessageTemplateComponent.ButtonType
- java.lang.Object
-
- java.lang.Enum<WhatsAppMessageTemplateComponent.ButtonType>
-
- com.restfb.types.whatsapp.WhatsAppMessageTemplateComponent.ButtonType
-
- All Implemented Interfaces:
Serializable
,Comparable<WhatsAppMessageTemplateComponent.ButtonType>
- Enclosing class:
- WhatsAppMessageTemplateComponent
public static enum WhatsAppMessageTemplateComponent.ButtonType extends Enum<WhatsAppMessageTemplateComponent.ButtonType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PHONE_NUMBER
QUICK_REPLY
URL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WhatsAppMessageTemplateComponent.ButtonType
valueOf(String name)
Returns the enum constant of this type with the specified name.static WhatsAppMessageTemplateComponent.ButtonType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUICK_REPLY
public static final WhatsAppMessageTemplateComponent.ButtonType QUICK_REPLY
-
URL
public static final WhatsAppMessageTemplateComponent.ButtonType URL
-
PHONE_NUMBER
public static final WhatsAppMessageTemplateComponent.ButtonType PHONE_NUMBER
-
-
Method Detail
-
values
public static WhatsAppMessageTemplateComponent.ButtonType[] 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 (WhatsAppMessageTemplateComponent.ButtonType c : WhatsAppMessageTemplateComponent.ButtonType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WhatsAppMessageTemplateComponent.ButtonType 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
-
-