Enum IdleMonitorBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<IdleMonitorBase.PropertyKeys>
-
- org.primefaces.component.idlemonitor.IdleMonitorBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable,Comparable<IdleMonitorBase.PropertyKeys>
- Enclosing class:
- IdleMonitorBase
public static enum IdleMonitorBase.PropertyKeys extends Enum<IdleMonitorBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description multiWindowSupportonactiveonidletimeoutwidgetVar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IdleMonitorBase.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static IdleMonitorBase.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 IdleMonitorBase.PropertyKeys widgetVar
-
timeout
public static final IdleMonitorBase.PropertyKeys timeout
-
onidle
public static final IdleMonitorBase.PropertyKeys onidle
-
onactive
public static final IdleMonitorBase.PropertyKeys onactive
-
multiWindowSupport
public static final IdleMonitorBase.PropertyKeys multiWindowSupport
-
-
Method Detail
-
values
public static IdleMonitorBase.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 (IdleMonitorBase.PropertyKeys c : IdleMonitorBase.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 IdleMonitorBase.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
-
-