Enum TimePicker.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<TimePicker.PropertyKeys>
-
- org.primefaces.extensions.component.timepicker.TimePicker.PropertyKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TimePicker.PropertyKeys>
- Enclosing class:
- TimePicker
protected static enum TimePicker.PropertyKeys extends java.lang.Enum<TimePicker.PropertyKeys>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimePicker.PropertyKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TimePicker.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 TimePicker.PropertyKeys widgetVar
-
timeSeparator
public static final TimePicker.PropertyKeys timeSeparator
-
showPeriod
public static final TimePicker.PropertyKeys showPeriod
-
dialogPosition
public static final TimePicker.PropertyKeys dialogPosition
-
inputPosition
public static final TimePicker.PropertyKeys inputPosition
-
mode
public static final TimePicker.PropertyKeys mode
-
startHours
public static final TimePicker.PropertyKeys startHours
-
endHours
public static final TimePicker.PropertyKeys endHours
-
startMinutes
public static final TimePicker.PropertyKeys startMinutes
-
endMinutes
public static final TimePicker.PropertyKeys endMinutes
-
intervalMinutes
public static final TimePicker.PropertyKeys intervalMinutes
-
rows
public static final TimePicker.PropertyKeys rows
-
showHours
public static final TimePicker.PropertyKeys showHours
-
showMinutes
public static final TimePicker.PropertyKeys showMinutes
-
showCloseButton
public static final TimePicker.PropertyKeys showCloseButton
-
showNowButton
public static final TimePicker.PropertyKeys showNowButton
-
showDeselectButton
public static final TimePicker.PropertyKeys showDeselectButton
-
onHourShow
public static final TimePicker.PropertyKeys onHourShow
-
onMinuteShow
public static final TimePicker.PropertyKeys onMinuteShow
-
showOn
public static final TimePicker.PropertyKeys showOn
-
locale
public static final TimePicker.PropertyKeys locale
-
minHour
public static final TimePicker.PropertyKeys minHour
-
minMinute
public static final TimePicker.PropertyKeys minMinute
-
maxHour
public static final TimePicker.PropertyKeys maxHour
-
maxMinute
public static final TimePicker.PropertyKeys maxMinute
-
readonlyInput
public static final TimePicker.PropertyKeys readonlyInput
-
size
public static final TimePicker.PropertyKeys size
-
-
Method Detail
-
values
public static TimePicker.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 (TimePicker.PropertyKeys c : TimePicker.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 TimePicker.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
-
-