Enum FuzzySearchBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<FuzzySearchBase.PropertyKeys>
-
- org.primefaces.extensions.component.fuzzysearch.FuzzySearchBase.PropertyKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FuzzySearchBase.PropertyKeys>
- Enclosing class:
- FuzzySearchBase
protected static enum FuzzySearchBase.PropertyKeys extends java.lang.Enum<FuzzySearchBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description disabledhighlightlabellistItemsAtTheBeginningonchangeplaceholderresultStyleresultStyleClassstylestyleClasstabindexunselectablewidgetVar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FuzzySearchBase.PropertyKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FuzzySearchBase.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
widgetVar
public static final FuzzySearchBase.PropertyKeys widgetVar
-
disabled
public static final FuzzySearchBase.PropertyKeys disabled
-
label
public static final FuzzySearchBase.PropertyKeys label
-
onchange
public static final FuzzySearchBase.PropertyKeys onchange
-
style
public static final FuzzySearchBase.PropertyKeys style
-
styleClass
public static final FuzzySearchBase.PropertyKeys styleClass
-
tabindex
public static final FuzzySearchBase.PropertyKeys tabindex
-
unselectable
public static final FuzzySearchBase.PropertyKeys unselectable
-
resultStyle
public static final FuzzySearchBase.PropertyKeys resultStyle
-
resultStyleClass
public static final FuzzySearchBase.PropertyKeys resultStyleClass
-
placeholder
public static final FuzzySearchBase.PropertyKeys placeholder
-
highlight
public static final FuzzySearchBase.PropertyKeys highlight
-
listItemsAtTheBeginning
public static final FuzzySearchBase.PropertyKeys listItemsAtTheBeginning
-
-
Method Detail
-
values
public static FuzzySearchBase.PropertyKeys[] 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 (FuzzySearchBase.PropertyKeys c : FuzzySearchBase.PropertyKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FuzzySearchBase.PropertyKeys valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-