Package com.jalios.jcms.jportal
Enum JPortalEditPortletUIHandler.SkinSection
- java.lang.Object
-
- java.lang.Enum<JPortalEditPortletUIHandler.SkinSection>
-
- com.jalios.jcms.jportal.JPortalEditPortletUIHandler.SkinSection
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<JPortalEditPortletUIHandler.SkinSection>
- Enclosing class:
- JPortalEditPortletUIHandler
public static enum JPortalEditPortletUIHandler.SkinSection extends java.lang.Enum<JPortalEditPortletUIHandler.SkinSection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FOOTER_BUTTON
HEADER
HEADER_BUTTON
HEADER_ICON
HEADER_PRIMARY_COLOR
HEADER_SECONDARY_COLOR
HEADER_SUB_TEXT
HEADER_TITLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JPortalEditPortletUIHandler.SkinSection
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JPortalEditPortletUIHandler.SkinSection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEADER
public static final JPortalEditPortletUIHandler.SkinSection HEADER
-
HEADER_TITLE
public static final JPortalEditPortletUIHandler.SkinSection HEADER_TITLE
-
HEADER_PRIMARY_COLOR
public static final JPortalEditPortletUIHandler.SkinSection HEADER_PRIMARY_COLOR
-
HEADER_SECONDARY_COLOR
public static final JPortalEditPortletUIHandler.SkinSection HEADER_SECONDARY_COLOR
-
HEADER_ICON
public static final JPortalEditPortletUIHandler.SkinSection HEADER_ICON
-
HEADER_SUB_TEXT
public static final JPortalEditPortletUIHandler.SkinSection HEADER_SUB_TEXT
-
HEADER_BUTTON
public static final JPortalEditPortletUIHandler.SkinSection HEADER_BUTTON
-
FOOTER_BUTTON
public static final JPortalEditPortletUIHandler.SkinSection FOOTER_BUTTON
-
-
Method Detail
-
values
public static JPortalEditPortletUIHandler.SkinSection[] 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 (JPortalEditPortletUIHandler.SkinSection c : JPortalEditPortletUIHandler.SkinSection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JPortalEditPortletUIHandler.SkinSection 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
-
-