类 PlayerNamePrompt

java.lang.Object
org.bukkit.conversations.ValidatingPrompt
org.bukkit.conversations.PlayerNamePrompt
所有已实现的接口:
Cloneable, Prompt

public abstract class PlayerNamePrompt extends ValidatingPrompt
PlayerNamePrompt is the base class for any prompt that requires the player to enter another player's name.
  • 构造器详细资料

    • PlayerNamePrompt

      public PlayerNamePrompt(Plugin plugin)
  • 方法详细资料

    • isInputValid

      protected boolean isInputValid(ConversationContext context, String input)
      从类复制的说明: ValidatingPrompt
      Override this method to check the validity of the player's input.
      指定者:
      isInputValid 在类中 ValidatingPrompt
      参数:
      context - Context information about the conversation.
      input - The player's raw console input.
      返回:
      True or false depending on the validity of the input.
    • acceptValidatedInput

      protected Prompt acceptValidatedInput(ConversationContext context, String input)
      从类复制的说明: ValidatingPrompt
      Override this method to accept and processes the validated input from the user. Using the input, the next Prompt in the prompt graph should be returned.
      指定者:
      acceptValidatedInput 在类中 ValidatingPrompt
      参数:
      context - Context information about the conversation.
      input - The validated input text from the user.
      返回:
      The next Prompt in the prompt graph.
    • acceptValidatedInput

      protected abstract Prompt acceptValidatedInput(ConversationContext context, Player input)
      Override this method to perform some action with the user's player name response.
      参数:
      context - Context information about the conversation.
      input - The user's player name response.
      返回:
      The next Prompt in the prompt graph.