public enum Anchoring extends java.lang.Enum<Anchoring>
RoutingOptions.setAnchoring(com.mindfusion.diagramming.Anchoring)
method of the RoutingOptions
class and the layout classes.Enum Constant and Description |
---|
Ignore
Specifies that anchor points should be ignored.
|
Keep
Specifies that links' original anchor points should be preserved.
|
Reassign
Lets the layout algorithms align links to different anchor points.
|
Modifier and Type | Method and Description |
---|---|
static Anchoring |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Anchoring[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Anchoring Ignore
public static final Anchoring Keep
public static final Anchoring Reassign
public static Anchoring[] values()
for (Anchoring c : Anchoring.values()) System.out.println(c);
public static Anchoring 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