Package org.primefaces.component.spinner
Enum SpinnerBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<SpinnerBase.PropertyKeys>
-
- org.primefaces.component.spinner.SpinnerBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable,Comparable<SpinnerBase.PropertyKeys>
- Enclosing class:
- SpinnerBase
public static enum SpinnerBase.PropertyKeys extends Enum<SpinnerBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description decimalPlacesdecimalSeparatormaxminplaceholderprefixrotateroundstepFactorsuffixthousandSeparatorwidgetVar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpinnerBase.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static SpinnerBase.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
placeholder
public static final SpinnerBase.PropertyKeys placeholder
-
widgetVar
public static final SpinnerBase.PropertyKeys widgetVar
-
stepFactor
public static final SpinnerBase.PropertyKeys stepFactor
-
min
public static final SpinnerBase.PropertyKeys min
-
max
public static final SpinnerBase.PropertyKeys max
-
prefix
public static final SpinnerBase.PropertyKeys prefix
-
suffix
public static final SpinnerBase.PropertyKeys suffix
-
decimalPlaces
public static final SpinnerBase.PropertyKeys decimalPlaces
-
decimalSeparator
public static final SpinnerBase.PropertyKeys decimalSeparator
-
thousandSeparator
public static final SpinnerBase.PropertyKeys thousandSeparator
-
rotate
public static final SpinnerBase.PropertyKeys rotate
-
round
public static final SpinnerBase.PropertyKeys round
-
-
Method Detail
-
values
public static SpinnerBase.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 (SpinnerBase.PropertyKeys c : SpinnerBase.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 SpinnerBase.PropertyKeys 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
-
-