Enum Timer.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<Timer.PropertyKeys>
-
- org.primefaces.extensions.component.timer.Timer.PropertyKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Timer.PropertyKeys>
- Enclosing class:
- Timer
protected static enum Timer.PropertyKeys extends java.lang.Enum<Timer.PropertyKeys>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Timer.PropertyKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Timer.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 Timer.PropertyKeys widgetVar
-
singleRun
public static final Timer.PropertyKeys singleRun
-
timeout
public static final Timer.PropertyKeys timeout
-
interval
public static final Timer.PropertyKeys interval
-
update
public static final Timer.PropertyKeys update
-
listener
public static final Timer.PropertyKeys listener
-
immediate
public static final Timer.PropertyKeys immediate
-
ontimercomplete
public static final Timer.PropertyKeys ontimercomplete
-
ontimerstep
public static final Timer.PropertyKeys ontimerstep
-
onstart
public static final Timer.PropertyKeys onstart
-
oncomplete
public static final Timer.PropertyKeys oncomplete
-
process
public static final Timer.PropertyKeys process
-
onerror
public static final Timer.PropertyKeys onerror
-
onsuccess
public static final Timer.PropertyKeys onsuccess
-
global
public static final Timer.PropertyKeys global
-
delay
public static final Timer.PropertyKeys delay
-
async
public static final Timer.PropertyKeys async
-
autoStart
public static final Timer.PropertyKeys autoStart
-
partialSubmit
public static final Timer.PropertyKeys partialSubmit
-
resetValues
public static final Timer.PropertyKeys resetValues
-
format
public static final Timer.PropertyKeys format
-
style
public static final Timer.PropertyKeys style
-
styleClass
public static final Timer.PropertyKeys styleClass
-
ignoreAutoUpdate
public static final Timer.PropertyKeys ignoreAutoUpdate
-
visible
public static final Timer.PropertyKeys visible
-
forward
public static final Timer.PropertyKeys forward
-
locale
public static final Timer.PropertyKeys locale
-
formatFunction
public static final Timer.PropertyKeys formatFunction
-
partialSubmitFilter
public static final Timer.PropertyKeys partialSubmitFilter
-
form
public static final Timer.PropertyKeys form
-
title
public static final Timer.PropertyKeys title
-
ignoreComponentNotFound
public static final Timer.PropertyKeys ignoreComponentNotFound
-
-
Method Detail
-
values
public static Timer.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 (Timer.PropertyKeys c : Timer.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 Timer.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
-
-