Enum Class JXSearchField.LayoutStyle

java.lang.Object
java.lang.Enum<JXSearchField.LayoutStyle>
org.jdesktop.swingx.JXSearchField.LayoutStyle
All Implemented Interfaces:
Serializable, Comparable<JXSearchField.LayoutStyle>, java.lang.constant.Constable
Enclosing class:
JXSearchField

public static enum JXSearchField.LayoutStyle extends Enum<JXSearchField.LayoutStyle>
Defines, how the find and cancel button are layouted.
  • Enum Constant Details

    • VISTA

      public static final JXSearchField.LayoutStyle VISTA

      In VISTA layout style, the find button is placed on the right side of the search field. If text is entered, the find button is replaced by the cancel button when the actual search mode is JXSearchField.SearchMode.INSTANT. When the search mode is JXSearchField.SearchMode.REGULAR the find button will always stay visible and the cancel button will never be shown. However, 'Escape' can still be pressed to clear the text.

    • MAC

      public static final JXSearchField.LayoutStyle MAC

      In MAC layout style, the find button is placed on the left side of the search field and the cancel button on the right side. The cancel button is only visible when text is present.

  • Method Details

    • values

      public static JXSearchField.LayoutStyle[] 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 JXSearchField.LayoutStyle 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