public enum SimpleShape extends java.lang.Enum<SimpleShape>
TableNode.setShape(com.mindfusion.diagramming.SimpleShape)
method of the TableNode
class.Enum Constant and Description |
---|
Rectangle
The node's shape is a rectangle.
|
RoundedRectangle
The node's shape is a rounded rectangle.
|
Modifier and Type | Method and Description |
---|---|
static SimpleShape |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleShape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleShape Rectangle
public static final SimpleShape RoundedRectangle
public static SimpleShape[] values()
for (SimpleShape c : SimpleShape.values()) System.out.println(c);
public static SimpleShape 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