Uses of Class
org.bukkit.conversations.ConversationContext
Packages that use ConversationContext
Package
Description
Classes dedicated to facilitate direct player-to-plugin communication.
-
Uses of ConversationContext in org.bukkit.conversations
Fields in org.bukkit.conversations declared as ConversationContextModifier and TypeFieldDescriptionprotected ConversationContext
Conversation.context
Deprecated, for removal: This API element is subject to removal in a future version.Methods in org.bukkit.conversations that return ConversationContextModifier and TypeMethodDescriptionConversation.getContext()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the Conversation'sConversationContext
.ConversationAbandonedEvent.getContext()
Deprecated, for removal: This API element is subject to removal in a future version.Gets the abandoned conversation's conversation context.Methods in org.bukkit.conversations with parameters of type ConversationContextModifier and TypeMethodDescriptionMessagePrompt.acceptInput
(@NotNull ConversationContext context, @Nullable String input) Deprecated, for removal: This API element is subject to removal in a future version.Accepts and ignores any user input, returning the next prompt in the prompt graph instead.Prompt.acceptInput
(@NotNull ConversationContext context, @Nullable String input) Deprecated, for removal: This API element is subject to removal in a future version.Accepts and processes input from the user.ValidatingPrompt.acceptInput
(@NotNull ConversationContext context, @Nullable String input) Deprecated, for removal: This API element is subject to removal in a future version.Accepts and processes input from the user and validates it.BooleanPrompt.acceptValidatedInput
(@NotNull ConversationContext context, boolean input) Deprecated, for removal: This API element is subject to removal in a future version.Override this method to perform some action with the user's boolean response.BooleanPrompt.acceptValidatedInput
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.NumericPrompt.acceptValidatedInput
(@NotNull ConversationContext context, @NotNull Number input) Deprecated, for removal: This API element is subject to removal in a future version.Override this method to perform some action with the user's integer response.NumericPrompt.acceptValidatedInput
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.PlayerNamePrompt.acceptValidatedInput
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.PlayerNamePrompt.acceptValidatedInput
(@NotNull ConversationContext context, @NotNull Player input) Deprecated, for removal: This API element is subject to removal in a future version.Override this method to perform some action with the user's player name response.ValidatingPrompt.acceptValidatedInput
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.Override this method to accept and processes the validated input from the user.boolean
MessagePrompt.blocksForInput
(@NotNull ConversationContext context) Deprecated, for removal: This API element is subject to removal in a future version.Message prompts never wait for user input before continuing.boolean
Prompt.blocksForInput
(@NotNull ConversationContext context) Deprecated, for removal: This API element is subject to removal in a future version.Checks to see if this prompt implementation should wait for user input or immediately display the next prompt.boolean
StringPrompt.blocksForInput
(@NotNull ConversationContext context) Deprecated, for removal: This API element is subject to removal in a future version.Ensures that the prompt waits for the user to provide input.boolean
ValidatingPrompt.blocksForInput
(@NotNull ConversationContext context) Deprecated, for removal: This API element is subject to removal in a future version.Ensures that the prompt waits for the user to provide input.boolean
ConversationCanceller.cancelBasedOnInput
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.Cancels a conversation based on user input.boolean
ExactMatchConversationCanceller.cancelBasedOnInput
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.boolean
InactivityConversationCanceller.cancelBasedOnInput
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.boolean
ManuallyAbandonedConversationCanceller.cancelBasedOnInput
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.NumericPrompt.getFailedValidationText
(@NotNull ConversationContext context, @NotNull Number invalidInput) Deprecated, for removal: This API element is subject to removal in a future version.Optionally override this method to display an additional message if the user enters an invalid numeric input.NumericPrompt.getFailedValidationText
(@NotNull ConversationContext context, @NotNull String invalidInput) Deprecated, for removal: This API element is subject to removal in a future version.ValidatingPrompt.getFailedValidationText
(@NotNull ConversationContext context, @NotNull String invalidInput) Deprecated, for removal: This API element is subject to removal in a future version.Optionally override this method to display an additional message if the user enters an invalid input.NumericPrompt.getInputNotNumericText
(@NotNull ConversationContext context, @NotNull String invalidInput) Deprecated, for removal: This API element is subject to removal in a future version.Optionally override this method to display an additional message if the user enters an invalid number.MessagePrompt.getNextPrompt
(@NotNull ConversationContext context) Deprecated, for removal: This API element is subject to removal in a future version.Override this method to return the next prompt in the prompt graph.ConversationPrefix.getPrefix
(@NotNull ConversationContext context) Deprecated, for removal: This API element is subject to removal in a future version.Gets the prefix to use before each message to the player.NullConversationPrefix.getPrefix
(@NotNull ConversationContext context) Deprecated, for removal: This API element is subject to removal in a future version.Prepends each conversation message with an empty string.PluginNameConversationPrefix.getPrefix
(@NotNull ConversationContext context) Deprecated, for removal: This API element is subject to removal in a future version.Prepends each conversation message with the plugin name.Prompt.getPromptText
(@NotNull ConversationContext context) Deprecated, for removal: This API element is subject to removal in a future version.Gets the text to display to the user when this prompt is first presented.protected boolean
BooleanPrompt.isInputValid
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.protected boolean
FixedSetPrompt.isInputValid
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.protected boolean
NumericPrompt.isInputValid
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.protected boolean
PlayerNamePrompt.isInputValid
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.protected boolean
RegexPrompt.isInputValid
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.protected abstract boolean
ValidatingPrompt.isInputValid
(@NotNull ConversationContext context, @NotNull String input) Deprecated, for removal: This API element is subject to removal in a future version.Override this method to check the validity of the player's input.protected boolean
NumericPrompt.isNumberValid
(@NotNull ConversationContext context, @NotNull Number input) Deprecated, for removal: This API element is subject to removal in a future version.Override this method to do further validation on the numeric player input after the input has been determined to actually be a number.