Enum WebMessagingQuickReply.ActionEnum
- java.lang.Object
-
- java.lang.Enum<WebMessagingQuickReply.ActionEnum>
-
- cloud.genesys.webmessaging.sdk.model.WebMessagingQuickReply.ActionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<WebMessagingQuickReply.ActionEnum>
- Enclosing class:
- WebMessagingQuickReply
public static enum WebMessagingQuickReply.ActionEnum extends Enum<WebMessagingQuickReply.ActionEnum>
Specifies the type of action that is triggered upon clicking the quick reply.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MESSAGEOUTDATEDSDKVERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WebMessagingQuickReply.ActionEnumfromString(String key)StringtoString()static WebMessagingQuickReply.ActionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static WebMessagingQuickReply.ActionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OUTDATEDSDKVERSION
public static final WebMessagingQuickReply.ActionEnum OUTDATEDSDKVERSION
-
MESSAGE
public static final WebMessagingQuickReply.ActionEnum MESSAGE
-
-
Method Detail
-
values
public static WebMessagingQuickReply.ActionEnum[] 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 (WebMessagingQuickReply.ActionEnum c : WebMessagingQuickReply.ActionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebMessagingQuickReply.ActionEnum 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
-
fromString
public static WebMessagingQuickReply.ActionEnum fromString(String key)
-
toString
public String toString()
- Overrides:
toStringin classEnum<WebMessagingQuickReply.ActionEnum>
-
-