Package org.jdesktop.swingx
Enum Class JXSearchField.LayoutStyle
- All Implemented Interfaces:
Serializable
,Comparable<JXSearchField.LayoutStyle>
,java.lang.constant.Constable
- Enclosing class:
- JXSearchField
Defines, how the find and cancel button are layouted.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic JXSearchField.LayoutStyle
Returns the enum constant of this class with the specified name.static JXSearchField.LayoutStyle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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 isJXSearchField.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
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
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
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 nameNullPointerException
- if the argument is null
-