Enum ConfirmDialogBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<ConfirmDialogBase.PropertyKeys>
-
- org.primefaces.component.confirmdialog.ConfirmDialogBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<ConfirmDialogBase.PropertyKeys>
- Enclosing class:
- ConfirmDialogBase
public static enum ConfirmDialogBase.PropertyKeys extends Enum<ConfirmDialogBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description appendTo
closable
closeOnEscape
dir
global
header
height
hideEffect
message
responsive
severity
showEffect
style
styleClass
visible
widgetVar
width
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfirmDialogBase.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConfirmDialogBase.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 ConfirmDialogBase.PropertyKeys widgetVar
-
message
public static final ConfirmDialogBase.PropertyKeys message
-
header
public static final ConfirmDialogBase.PropertyKeys header
-
severity
public static final ConfirmDialogBase.PropertyKeys severity
-
width
public static final ConfirmDialogBase.PropertyKeys width
-
height
public static final ConfirmDialogBase.PropertyKeys height
-
style
public static final ConfirmDialogBase.PropertyKeys style
-
styleClass
public static final ConfirmDialogBase.PropertyKeys styleClass
-
closable
public static final ConfirmDialogBase.PropertyKeys closable
-
appendTo
public static final ConfirmDialogBase.PropertyKeys appendTo
-
visible
public static final ConfirmDialogBase.PropertyKeys visible
-
showEffect
public static final ConfirmDialogBase.PropertyKeys showEffect
-
hideEffect
public static final ConfirmDialogBase.PropertyKeys hideEffect
-
closeOnEscape
public static final ConfirmDialogBase.PropertyKeys closeOnEscape
-
dir
public static final ConfirmDialogBase.PropertyKeys dir
-
global
public static final ConfirmDialogBase.PropertyKeys global
-
responsive
public static final ConfirmDialogBase.PropertyKeys responsive
-
-
Method Detail
-
values
public static ConfirmDialogBase.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 (ConfirmDialogBase.PropertyKeys c : ConfirmDialogBase.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 ConfirmDialogBase.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
-
-