| Enum Constant and Description |
|---|
AS_PARENT |
BUBBLE |
COMBINED |
FORK |
NARROW_HEXAGON |
OVAL |
RECTANGLE |
WIDE_HEXAGON |
| Modifier and Type | Method and Description |
|---|---|
static NodeShape |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeShape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeShape FORK
public static final NodeShape BUBBLE
public static final NodeShape OVAL
public static final NodeShape RECTANGLE
public static final NodeShape WIDE_HEXAGON
public static final NodeShape NARROW_HEXAGON
public static final NodeShape AS_PARENT
public static final NodeShape COMBINED
public static NodeShape[] values()
for (NodeShape c : NodeShape.values()) System.out.println(c);
public static NodeShape 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 null