public enum LinkCrossings extends java.lang.Enum<LinkCrossings>
Diagram.setLinkCrossings(com.mindfusion.diagramming.LinkCrossings)
method.Enum Constant and Description |
---|
Arcs
Draw arcs above the intersection points.
|
Cut
Break off the link segments at the intersection points.
|
Straight
Draw straight lines.
|
Modifier and Type | Method and Description |
---|---|
static LinkCrossings |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LinkCrossings[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkCrossings Straight
public static final LinkCrossings Arcs
public static final LinkCrossings Cut
public static LinkCrossings[] values()
for (LinkCrossings c : LinkCrossings.values()) System.out.println(c);
public static LinkCrossings 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