public enum InterEdgeRoutingStyle extends Enum<InterEdgeRoutingStyle>
Enum Constant and Description |
---|
ADOPT
An inter-edge routing style based on which the edge layout of inter-edges will be adopted from the
core layout algorithm . |
ORTHOGONAL
An inter-edge routing style based on which inter-edges are routed in an orthogonal style.
|
STRAIGHTLINE
An inter-edge routing style based on which inter-edges are routed as straight lines.
|
Modifier and Type | Method and Description |
---|---|
static InterEdgeRoutingStyle |
fromOrdinal(int ordinal) |
int |
value() |
static InterEdgeRoutingStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterEdgeRoutingStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterEdgeRoutingStyle ADOPT
core layout algorithm
.public static final InterEdgeRoutingStyle ORTHOGONAL
public static final InterEdgeRoutingStyle STRAIGHTLINE
public static final InterEdgeRoutingStyle fromOrdinal(int ordinal)
public int value()
public static InterEdgeRoutingStyle 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 InterEdgeRoutingStyle[] values()
for (InterEdgeRoutingStyle c : InterEdgeRoutingStyle.values()) System.out.println(c);