Uses of Interface
org.bukkit.conversations.ConversationCanceller
Package | Description |
---|---|
org.bukkit.conversations |
Classes dedicated to facilitate direct player-to-plugin communication.
|
-
Uses of ConversationCanceller in org.bukkit.conversations
Classes in org.bukkit.conversations that implement ConversationCanceller Modifier and Type Class Description class
ExactMatchConversationCanceller
An ExactMatchConversationCanceller cancels a conversation if the user enters an exact input stringclass
InactivityConversationCanceller
An InactivityConversationCanceller will cancel aConversation
after a period of inactivity by the user.class
ManuallyAbandonedConversationCanceller
The ManuallyAbandonedConversationCanceller is only used as part of aConversationAbandonedEvent
to indicate that the conversation was manually abandoned by programmatically calling the abandon() method on it.Fields in org.bukkit.conversations with type parameters of type ConversationCanceller Modifier and Type Field Description protected List<ConversationCanceller>
Conversation. cancellers
protected List<ConversationCanceller>
ConversationFactory. cancellers
Methods in org.bukkit.conversations that return ConversationCanceller Modifier and Type Method Description ConversationCanceller
ConversationCanceller. clone()
Allows theConversationFactory
to duplicate this ConversationCanceller when creating a newConversation
.ConversationCanceller
ExactMatchConversationCanceller. clone()
ConversationCanceller
InactivityConversationCanceller. clone()
ConversationCanceller
ManuallyAbandonedConversationCanceller. clone()
ConversationCanceller
ConversationAbandonedEvent. getCanceller()
Gets the object that caused the conversation to be abandoned.Methods in org.bukkit.conversations that return types with arguments of type ConversationCanceller Modifier and Type Method Description List<ConversationCanceller>
Conversation. getCancellers()
Gets the list ofConversationCanceller
sMethods in org.bukkit.conversations with parameters of type ConversationCanceller Modifier and Type Method Description ConversationFactory
ConversationFactory. withConversationCanceller(ConversationCanceller canceller)
Adds aConversationCanceller
to constructed conversations.Constructors in org.bukkit.conversations with parameters of type ConversationCanceller Constructor Description ConversationAbandonedEvent(Conversation conversation, ConversationCanceller canceller)