public enum SkinTypes extends java.lang.Enum<SkinTypes>
Java class for skinTypes.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="skinTypes">
<restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
<enumeration value="navigation"/>
<enumeration value="portlet"/>
<enumeration value="row"/>
<enumeration value="column"/>
<enumeration value="default"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COLUMN
A skin that can be applied to column containers.
|
DEFAULT
A skin that has no restriction for its applicability.
|
NAVIGATION
A skin that can be applied to content nodes and defines how the navigation for the content nodes is displayed.
|
PORTLET
A skin that can be applied to control components.
|
ROW
A skin that can be applied to row containers.
|
| Modifier and Type | Method and Description |
|---|---|
static SkinTypes |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static SkinTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SkinTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SkinTypes NAVIGATION
public static final SkinTypes PORTLET
public static final SkinTypes ROW
public static final SkinTypes COLUMN
public static final SkinTypes DEFAULT
public static SkinTypes[] values()
for (SkinTypes c : SkinTypes.values()) System.out.println(c);
public static SkinTypes valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static SkinTypes fromValue(java.lang.String v)