public static enum IDiagramLink.LinkRouterKind extends java.lang.Enum<IDiagramLink.LinkRouterKind>
| Enum Constant and Description |
|---|
BENDPOINT
Link with bend points.
|
DIRECT
Direct from source to destination.
|
ORTHOGONAL
Orthogonal link.
|
| Modifier and Type | Method and Description |
|---|---|
static IDiagramLink.LinkRouterKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IDiagramLink.LinkRouterKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IDiagramLink.LinkRouterKind DIRECT
public static final IDiagramLink.LinkRouterKind BENDPOINT
public static final IDiagramLink.LinkRouterKind ORTHOGONAL
public static IDiagramLink.LinkRouterKind[] values()
for (IDiagramLink.LinkRouterKind c : IDiagramLink.LinkRouterKind.values()) System.out.println(c);
public static IDiagramLink.LinkRouterKind 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