Enum OverlayPanelBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<OverlayPanelBase.PropertyKeys>
-
- org.primefaces.component.overlaypanel.OverlayPanelBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<OverlayPanelBase.PropertyKeys>
- Enclosing class:
- OverlayPanelBase
public static enum OverlayPanelBase.PropertyKeys extends Enum<OverlayPanelBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description appendTo
at
autoHide
blockScroll
collision
dismissable
dynamic
forValue
hideEvent
modal
my
onHide
onShow
showCloseIcon
showDelay
showEvent
style
styleClass
widgetVar
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static OverlayPanelBase.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static OverlayPanelBase.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 OverlayPanelBase.PropertyKeys widgetVar
-
style
public static final OverlayPanelBase.PropertyKeys style
-
styleClass
public static final OverlayPanelBase.PropertyKeys styleClass
-
forValue
public static final OverlayPanelBase.PropertyKeys forValue
-
showEvent
public static final OverlayPanelBase.PropertyKeys showEvent
-
hideEvent
public static final OverlayPanelBase.PropertyKeys hideEvent
-
appendTo
public static final OverlayPanelBase.PropertyKeys appendTo
-
onShow
public static final OverlayPanelBase.PropertyKeys onShow
-
onHide
public static final OverlayPanelBase.PropertyKeys onHide
-
my
public static final OverlayPanelBase.PropertyKeys my
-
at
public static final OverlayPanelBase.PropertyKeys at
-
collision
public static final OverlayPanelBase.PropertyKeys collision
-
dynamic
public static final OverlayPanelBase.PropertyKeys dynamic
-
dismissable
public static final OverlayPanelBase.PropertyKeys dismissable
-
showCloseIcon
public static final OverlayPanelBase.PropertyKeys showCloseIcon
-
modal
public static final OverlayPanelBase.PropertyKeys modal
-
blockScroll
public static final OverlayPanelBase.PropertyKeys blockScroll
-
showDelay
public static final OverlayPanelBase.PropertyKeys showDelay
-
autoHide
public static final OverlayPanelBase.PropertyKeys autoHide
-
-
Method Detail
-
values
public static OverlayPanelBase.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 (OverlayPanelBase.PropertyKeys c : OverlayPanelBase.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 OverlayPanelBase.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
-
toString
public String toString()
- Overrides:
toString
in classEnum<OverlayPanelBase.PropertyKeys>
-
-