Package com.liveperson.faas.client
Enum FaaSEvent
- java.lang.Object
-
- java.lang.Enum<FaaSEvent>
-
- com.liveperson.faas.client.FaaSEvent
-
- All Implemented Interfaces:
Serializable,Comparable<FaaSEvent>
public enum FaaSEvent extends Enum<FaaSEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static FaaSEventvalueOf(String name)Returns the enum constant of this type with the specified name.static FaaSEvent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ChatPostSurveyEmailTranscript
public static final FaaSEvent ChatPostSurveyEmailTranscript
-
ConversationalCommand
public static final FaaSEvent ConversationalCommand
-
MessagingNewConversation
public static final FaaSEvent MessagingNewConversation
-
MessagingConversationEnd
public static final FaaSEvent MessagingConversationEnd
-
MessagingConversationIdle
public static final FaaSEvent MessagingConversationIdle
-
MessagingConversationRouting
public static final FaaSEvent MessagingConversationRouting
-
MessagingLineInOffHours
public static final FaaSEvent MessagingLineInOffHours
-
MessagingParticipantChange
public static final FaaSEvent MessagingParticipantChange
-
MessagingTTR
public static final FaaSEvent MessagingTTR
-
MessagingSurveyStarted
public static final FaaSEvent MessagingSurveyStarted
-
MessagingSurveyEnded
public static final FaaSEvent MessagingSurveyEnded
-
ThirdPartyBotsPostHook
public static final FaaSEvent ThirdPartyBotsPostHook
-
ThirdPartyBotsErrorHook
public static final FaaSEvent ThirdPartyBotsErrorHook
-
ThirdPartyBotsCustomIntegration
public static final FaaSEvent ThirdPartyBotsCustomIntegration
-
ThirdPartyBotsPreHook
public static final FaaSEvent ThirdPartyBotsPreHook
-
-
Method Detail
-
values
public static FaaSEvent[] 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 (FaaSEvent c : FaaSEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FaaSEvent 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
-
-