Package org.primefaces.component.api
Enum UICalendar.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<UICalendar.PropertyKeys>
-
- org.primefaces.component.api.UICalendar.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<UICalendar.PropertyKeys>
- Enclosing class:
- UICalendar
public static enum UICalendar.PropertyKeys extends Enum<UICalendar.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description inputStyle
inputStyleClass
locale
mask
maskAutoClear
maskSlotChar
maxdate
mindate
pattern
rangeSeparator
readonlyInput
resolverStyle
timeOnly
timeZone
touchable
type
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UICalendar.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static UICalendar.PropertyKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
locale
public static final UICalendar.PropertyKeys locale
-
timeZone
public static final UICalendar.PropertyKeys timeZone
-
pattern
public static final UICalendar.PropertyKeys pattern
-
mindate
public static final UICalendar.PropertyKeys mindate
-
maxdate
public static final UICalendar.PropertyKeys maxdate
-
timeOnly
public static final UICalendar.PropertyKeys timeOnly
-
readonlyInput
public static final UICalendar.PropertyKeys readonlyInput
-
inputStyle
public static final UICalendar.PropertyKeys inputStyle
-
inputStyleClass
public static final UICalendar.PropertyKeys inputStyleClass
-
type
public static final UICalendar.PropertyKeys type
-
rangeSeparator
public static final UICalendar.PropertyKeys rangeSeparator
-
resolverStyle
public static final UICalendar.PropertyKeys resolverStyle
-
touchable
public static final UICalendar.PropertyKeys touchable
-
mask
public static final UICalendar.PropertyKeys mask
-
maskSlotChar
public static final UICalendar.PropertyKeys maskSlotChar
-
maskAutoClear
public static final UICalendar.PropertyKeys maskAutoClear
-
-
Method Detail
-
values
public static UICalendar.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 (UICalendar.PropertyKeys c : UICalendar.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 UICalendar.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
-
-