public enum NodeShape extends Enum<NodeShape>
See: http://www.graphviz.org/doc/info/shapes.html
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static NodeShape |
valueOf(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 BOX
public static final NodeShape ELLIPSE
public static final NodeShape NONE
public static NodeShape[] values()
for (NodeShape c : NodeShape.values()) System.out.println(c);
public static NodeShape 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