public enum NodeElementType extends Enum<NodeElementType> implements Serializable
| Enum Constant and Description |
|---|
EXPANDER_BUTTON
An expander button type.
|
IMAGE
An image type.
|
INDICATOR
An indicator type.
|
PANEL
A panel type.
|
TABLE
A data table type.
|
TEXTBLOCK
A text block type.
|
| Modifier and Type | Method and Description |
|---|---|
static NodeElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeElementType PANEL
public static final NodeElementType IMAGE
public static final NodeElementType INDICATOR
public static final NodeElementType TEXTBLOCK
public static final NodeElementType TABLE
public static final NodeElementType EXPANDER_BUTTON
public static NodeElementType[] values()
for (NodeElementType c : NodeElementType.values()) System.out.println(c);
public static NodeElementType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null