Package org.jdesktop.swingx
Enum JXSearchField.LayoutStyle
- java.lang.Object
-
- java.lang.Enum<JXSearchField.LayoutStyle>
-
- org.jdesktop.swingx.JXSearchField.LayoutStyle
-
- All Implemented Interfaces:
Serializable
,Comparable<JXSearchField.LayoutStyle>
- Enclosing class:
- JXSearchField
public static enum JXSearchField.LayoutStyle extends Enum<JXSearchField.LayoutStyle>
Defines, how the find and cancel button are layouted.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JXSearchField.LayoutStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static JXSearchField.LayoutStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 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
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 Detail
-
values
public static JXSearchField.LayoutStyle[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JXSearchField.LayoutStyle c : JXSearchField.LayoutStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JXSearchField.LayoutStyle valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-