public enum RerouteLinks extends java.lang.Enum<RerouteLinks>
RoutingOptions.setTriggerRerouting(java.util.EnumSet<com.mindfusion.diagramming.RerouteLinks>)
method of the RoutingOptions
class.Enum Constant and Description |
---|
WhenIntersectNode
Look for a new link route only if the link intersects a node.
|
WhenModified
Look for a new link route each time an end point of the link is moved.
|
WhileCreating
Looks for link route while the link is being initially drawn by the user.
|
Modifier and Type | Method and Description |
---|---|
static RerouteLinks |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RerouteLinks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RerouteLinks WhenModified
public static final RerouteLinks WhenIntersectNode
public static final RerouteLinks WhileCreating
public static RerouteLinks[] values()
for (RerouteLinks c : RerouteLinks.values()) System.out.println(c);
public static RerouteLinks 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