public class ExactMatchConversationCanceller extends Object implements ConversationCanceller
| Constructor and Description | 
|---|
ExactMatchConversationCanceller(String escapeSequence)
Builds an ExactMatchConversationCanceller. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
cancelBasedOnInput(ConversationContext context,
                  String input)
Cancels a conversation based on user input. 
 | 
ConversationCanceller | 
clone()
Allows the  
ConversationFactory to duplicate this
 ConversationCanceller when creating a new Conversation. | 
void | 
setConversation(Conversation conversation)
Sets the conversation this ConversationCanceller can optionally cancel. 
 | 
public ExactMatchConversationCanceller(@NotNull
                                       String escapeSequence)
escapeSequence - The string that, if entered by the user, will
     cancel the conversation.public void setConversation(@NotNull
                            Conversation conversation)
ConversationCancellersetConversation in interface ConversationCancellerconversation - A conversation.public boolean cancelBasedOnInput(@NotNull
                                  ConversationContext context,
                                  @NotNull
                                  String input)
ConversationCancellercancelBasedOnInput in interface ConversationCancellercontext - Context information about the conversation.input - The input text from the user.@NotNull public ConversationCanceller clone()
ConversationCancellerConversationFactory to duplicate this
 ConversationCanceller when creating a new Conversation.
 Implementing this method should reset any internal object state.
clone in interface ConversationCancellerclone in class ObjectCopyright © 2022. All rights reserved.