Enum Class DropDownTextFieldDataModel.SearchMode

java.lang.Object
java.lang.Enum<DropDownTextFieldDataModel.SearchMode>
docking.widgets.DropDownTextFieldDataModel.SearchMode
All Implemented Interfaces:
Serializable, Comparable<DropDownTextFieldDataModel.SearchMode>, Constable
Enclosing interface:
DropDownTextFieldDataModel<T>

public static enum DropDownTextFieldDataModel.SearchMode extends Enum<DropDownTextFieldDataModel.SearchMode>
  • Enum Constant Details

  • Method Details

    • values

      public static DropDownTextFieldDataModel.SearchMode[] 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 DropDownTextFieldDataModel.SearchMode 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
    • getHint

      public String getHint()
    • getDisplayName

      public String getDisplayName()
    • createPattern

      public Pattern createPattern(String input)
      Creates search pattern for the given input text. Clients do not have to use this method and a free to create their own text matching mechanism.
      Parameters:
      input - the input for which to search
      Returns:
      the pattern
      See Also: