public enum RecursiveEdgeStyle extends Enum<RecursiveEdgeStyle>
Enum Constant and Description |
---|
DIRECTED
Routing specifier that routes edges between different group contents recursively and directed.
|
OFF
Routing specifier that routes edges between different group contents non-recursively.
|
UNDIRECTED
Routing specifier that routes edges between different group contents recursively and undirected.
|
Modifier and Type | Method and Description |
---|---|
static RecursiveEdgeStyle |
fromOrdinal(int ordinal) |
int |
value() |
static RecursiveEdgeStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecursiveEdgeStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecursiveEdgeStyle DIRECTED
Edge
s can only leave the groups at the bottom side and enter them at the top
side.public static final RecursiveEdgeStyle OFF
Edge
s may leave and enter group nodes at the left and right side in order to
connect as directly as possible.public static final RecursiveEdgeStyle UNDIRECTED
Edge
s can leave the groups at the bottom or top side and enter them at the
bottom or top side. This style is more compact than the directed edge style.public static final RecursiveEdgeStyle fromOrdinal(int ordinal)
public int value()
public static RecursiveEdgeStyle 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 RecursiveEdgeStyle[] values()
for (RecursiveEdgeStyle c : RecursiveEdgeStyle.values()) System.out.println(c);