public enum TreeLayoutLinkType extends java.lang.Enum<TreeLayoutLinkType>
TreeLayout
. They can be used as parameters
of the TreeLayout.setLinkStyle(com.mindfusion.diagramming.TreeLayoutLinkType)
method of the TreeLayout
class.Enum Constant and Description |
---|
Cascading2
Each link should be a cascade of two orthogonal straight line segments.
|
Cascading3
Each link should be a cascade of three orthogonal straight line segments.
|
Rounded
Each link should consist of one Bezier segment.
|
Straight
Each link should consist of on straight line segment.
|
Modifier and Type | Method and Description |
---|---|
static TreeLayoutLinkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TreeLayoutLinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeLayoutLinkType Straight
public static final TreeLayoutLinkType Cascading2
public static final TreeLayoutLinkType Cascading3
public static final TreeLayoutLinkType Rounded
public static TreeLayoutLinkType[] values()
for (TreeLayoutLinkType c : TreeLayoutLinkType.values()) System.out.println(c);
public static TreeLayoutLinkType 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