public enum ShowAnchors extends java.lang.Enum<ShowAnchors>
ShowAnchors
property of Diagram
class.Enum Constant and Description |
---|
Always
Always display anchor point marks.
|
Auto
Automatically display anchor points when there is a node under the mouse.
|
Never
Never display anchor point marks.
|
Selected
Display anchor points marks for selected nodes.
|
SelectedAndAuto
Display anchor points marks for selected and pointed nodes.
|
Modifier and Type | Method and Description |
---|---|
static ShowAnchors |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShowAnchors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShowAnchors Always
public static final ShowAnchors Never
public static final ShowAnchors Auto
public static final ShowAnchors Selected
public static final ShowAnchors SelectedAndAuto
public static ShowAnchors[] values()
for (ShowAnchors c : ShowAnchors.values()) System.out.println(c);
public static ShowAnchors 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