public static enum PageElement.Type extends java.lang.Enum<PageElement.Type>
Enum Constant and Description |
---|
COLLECTION |
COLLECTION_ITEM |
COLUMN |
DROP_ZONE |
FRAGMENT |
FRAGMENT_DROP_ZONE |
ROOT |
ROW |
SECTION |
WIDGET |
Modifier and Type | Method and Description |
---|---|
static PageElement.Type |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static PageElement.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageElement.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageElement.Type COLLECTION
public static final PageElement.Type COLLECTION_ITEM
public static final PageElement.Type COLUMN
public static final PageElement.Type DROP_ZONE
public static final PageElement.Type FRAGMENT
public static final PageElement.Type FRAGMENT_DROP_ZONE
public static final PageElement.Type ROOT
public static final PageElement.Type ROW
public static final PageElement.Type SECTION
public static final PageElement.Type WIDGET
public static PageElement.Type[] values()
for (PageElement.Type c : PageElement.Type.values()) System.out.println(c);
public static PageElement.Type 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 static PageElement.Type create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString
in class java.lang.Enum<PageElement.Type>