public enum GroupingMode extends Enum<GroupingMode>
MultiPageLayout.getGroupingMode()
Enum Constant and Description |
---|
ALL_NODES
Node grouping specifier used when special nodes like, e.g., connector and proxy nodes (see
NodeType.CONNECTOR
and NodeType.PROXY ) should be assigned to group nodes, too. |
IGNORE
Node grouping specifier used when group nodes should be ignored.
|
ORIGINAL_NODES_ONLY
Node grouping specifier used when only original nodes should be assigned to group nodes.
|
Modifier and Type | Method and Description |
---|---|
static GroupingMode |
fromOrdinal(int ordinal) |
int |
value() |
static GroupingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupingMode ALL_NODES
NodeType.CONNECTOR
and NodeType.PROXY
) should be assigned to group nodes, too.MultiPageLayout.setGroupingMode(GroupingMode)
public static final GroupingMode IGNORE
public static final GroupingMode ORIGINAL_NODES_ONLY
NodeType.CONNECTOR
and
NodeType.PROXY
) are never assigned to group nodes even though the
associated node lies within a group.MultiPageLayout.setGroupingMode(GroupingMode)
public static final GroupingMode fromOrdinal(int ordinal)
public int value()
public static GroupingMode 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 GroupingMode[] values()
for (GroupingMode c : GroupingMode.values()) System.out.println(c);