public enum MultiParentRoutingStyle extends Enum<MultiParentRoutingStyle>
MultiParentDescriptor.getEdgeStyle()
Enum Constant and Description |
---|
ORTHOGONAL
Routing style for routing non-shared edge segments in an orthogonal fashion.
|
POLYLINE
Routing style for routing non-shared edge segments in a polyline fashion.
|
STRAIGHT
Routing style for routing non-shared edge segments straight.
|
Modifier and Type | Method and Description |
---|---|
static MultiParentRoutingStyle |
fromOrdinal(int ordinal) |
int |
value() |
static MultiParentRoutingStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultiParentRoutingStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiParentRoutingStyle ORTHOGONAL
The edges connected to a multi-parent structure will share their paths until shortly above/below the multi-parent nodes. This style only applies to the part of the edges where they split to connect to different multi-parents.
public static final MultiParentRoutingStyle POLYLINE
The edges connected to a multi-parent structure will share their paths until shortly above/below the multi-parent nodes. This style only applies to the part of the edges where they split to connect to different multi-parents.
public static final MultiParentRoutingStyle STRAIGHT
The edges connected to a multi-parent structure will share their paths until shortly above/below the multi-parent nodes. This style only applies to the part of the edges where they split to connect to different multi-parents.
public static final MultiParentRoutingStyle fromOrdinal(int ordinal)
public int value()
public static MultiParentRoutingStyle valueOf(String name)
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.public static MultiParentRoutingStyle[] values()
for (MultiParentRoutingStyle c : MultiParentRoutingStyle.values()) System.out.println(c);