Package org.primefaces.component.panel
Enum PanelBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<PanelBase.PropertyKeys>
-
- org.primefaces.component.panel.PanelBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<PanelBase.PropertyKeys>
- Enclosing class:
- PanelBase
public static enum PanelBase.PropertyKeys extends Enum<PanelBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description closable
closeSpeed
closeTitle
collapsed
footer
header
menuTitle
renderEmptyFacets
style
styleClass
toggleable
toggleableHeader
toggleOrientation
toggleSpeed
toggleTitle
visible
widgetVar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PanelBase.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static PanelBase.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 PanelBase.PropertyKeys widgetVar
-
header
public static final PanelBase.PropertyKeys header
-
footer
public static final PanelBase.PropertyKeys footer
-
toggleable
public static final PanelBase.PropertyKeys toggleable
-
toggleSpeed
public static final PanelBase.PropertyKeys toggleSpeed
-
style
public static final PanelBase.PropertyKeys style
-
styleClass
public static final PanelBase.PropertyKeys styleClass
-
collapsed
public static final PanelBase.PropertyKeys collapsed
-
closable
public static final PanelBase.PropertyKeys closable
-
closeSpeed
public static final PanelBase.PropertyKeys closeSpeed
-
visible
public static final PanelBase.PropertyKeys visible
-
closeTitle
public static final PanelBase.PropertyKeys closeTitle
-
toggleTitle
public static final PanelBase.PropertyKeys toggleTitle
-
menuTitle
public static final PanelBase.PropertyKeys menuTitle
-
renderEmptyFacets
public static final PanelBase.PropertyKeys renderEmptyFacets
-
toggleOrientation
public static final PanelBase.PropertyKeys toggleOrientation
-
toggleableHeader
public static final PanelBase.PropertyKeys toggleableHeader
-
-
Method Detail
-
values
public static PanelBase.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 (PanelBase.PropertyKeys c : PanelBase.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 PanelBase.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
-
-