类 RegexPrompt

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

public abstract class RegexPrompt extends ValidatingPrompt
RegexPrompt is the base class for any prompt that requires an input validated by a regular expression.
  • 构造器详细资料

    • RegexPrompt

      public RegexPrompt(String regex)
    • RegexPrompt

      public RegexPrompt(Pattern pattern)
  • 方法详细资料

    • 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.