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