public enum SwimlanesMode extends Enum<SwimlanesMode>
Enum Constant and Description |
---|
IGNORE_GROUPS
Swimlane ordering mode specifier defining that node grouping is ignored during the swimlane ordering optimization.
|
MIXED
Swimlane ordering mode specifier defining that both node grouping and edge length are considered during the swimlane
ordering optimization.
|
ONLY_GROUPS
Swimlane ordering mode specifier defining that only node grouping is considered during the swimlane ordering
optimization.
|
Modifier and Type | Method and Description |
---|---|
static SwimlanesMode |
fromOrdinal(int ordinal) |
int |
value() |
static SwimlanesMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SwimlanesMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SwimlanesMode IGNORE_GROUPS
public static final SwimlanesMode MIXED
public static final SwimlanesMode ONLY_GROUPS
public static final SwimlanesMode fromOrdinal(int ordinal)
public int value()
public static SwimlanesMode 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 SwimlanesMode[] values()
for (SwimlanesMode c : SwimlanesMode.values()) System.out.println(c);