Enum Class MatchType

java.lang.Object
java.lang.Enum<MatchType>
games.stendhal.server.entity.npc.fsm.MatchType
All Implemented Interfaces:
Serializable, Comparable<MatchType>, Constable

public enum MatchType extends Enum<MatchType>
How strong possible transitions should be matched.
  • Enum Constant Details

    • EXACT_MATCH

      public static final MatchType EXACT_MATCH
      a transition whose expected input matches exactly to the actual input, used to distinguish between words in singular and plural form, e.g. "cloak" and "cloaks"
    • NORMALIZED_MATCH

      public static final MatchType NORMALIZED_MATCH
      a transition whose normalized expected input matches the normalized input.
    • SIMILAR_MATCH

      public static final MatchType SIMILAR_MATCH
      a transition whose expected input is very similar to the actual input.
    • ABSOLUTE_JUMP

      public static final MatchType ABSOLUTE_JUMP
      a transition that can happen from any state with exact text match.
    • NORMALIZED_JUMP

      public static final MatchType NORMALIZED_JUMP
      a transition that can happen from any state with normalized text match.
    • SIMILAR_JUMP

      public static final MatchType SIMILAR_JUMP
      a transition that can happen from any state with similar text match.
  • Method Details

    • values

      public static MatchType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static MatchType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • match

      public boolean match(Transition transition, ConversationStates currentState, Sentence sentence)