public enum ForkStyle extends Enum<ForkStyle>
DefaultPortAssignment.getForkStyle()| Enum Constant and Description |
|---|
AT_NODE
Fork style specifier that defines that the edges will fork on a node.
|
OUTSIDE_NODE
Fork style specifier that defines that the edges will fork outside a node.
|
| Modifier and Type | Method and Description |
|---|---|
static ForkStyle |
fromOrdinal(int ordinal) |
int |
value() |
static ForkStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ForkStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForkStyle AT_NODE
public static final ForkStyle OUTSIDE_NODE
public static final ForkStyle fromOrdinal(int ordinal)
public int value()
public static ForkStyle 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 ForkStyle[] values()
for (ForkStyle c : ForkStyle.values()) System.out.println(c);