Enum CounterBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<CounterBase.PropertyKeys>
-
- org.primefaces.extensions.component.counter.CounterBase.PropertyKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CounterBase.PropertyKeys>
- Enclosing class:
- CounterBase
protected static enum CounterBase.PropertyKeys extends java.lang.Enum<CounterBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description autoStartdecimaldecimalsdurationendlocaleonendonstartprefixseparatorsmartEasingAmountsmartEasingThresholdstartstylestyleClasssuffixuseEasinguseGroupingvisiblewidgetVar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CounterBase.PropertyKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CounterBase.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 CounterBase.PropertyKeys widgetVar
-
style
public static final CounterBase.PropertyKeys style
-
styleClass
public static final CounterBase.PropertyKeys styleClass
-
start
public static final CounterBase.PropertyKeys start
-
end
public static final CounterBase.PropertyKeys end
-
decimals
public static final CounterBase.PropertyKeys decimals
-
duration
public static final CounterBase.PropertyKeys duration
-
useGrouping
public static final CounterBase.PropertyKeys useGrouping
-
useEasing
public static final CounterBase.PropertyKeys useEasing
-
smartEasingThreshold
public static final CounterBase.PropertyKeys smartEasingThreshold
-
smartEasingAmount
public static final CounterBase.PropertyKeys smartEasingAmount
-
locale
public static final CounterBase.PropertyKeys locale
-
separator
public static final CounterBase.PropertyKeys separator
-
decimal
public static final CounterBase.PropertyKeys decimal
-
prefix
public static final CounterBase.PropertyKeys prefix
-
suffix
public static final CounterBase.PropertyKeys suffix
-
autoStart
public static final CounterBase.PropertyKeys autoStart
-
visible
public static final CounterBase.PropertyKeys visible
-
onstart
public static final CounterBase.PropertyKeys onstart
-
onend
public static final CounterBase.PropertyKeys onend
-
-
Method Detail
-
values
public static CounterBase.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 (CounterBase.PropertyKeys c : CounterBase.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 CounterBase.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
-
-