public static enum LayoutConfiguration.InteractionMode extends java.lang.Enum<LayoutConfiguration.InteractionMode>
Enum Constant and Description |
---|
Columns
User positioning affects cycle detection and node layering.
|
Cycles
User positioning affects cycle detection.
|
Full
User positioning affects cycle detection, node layering, and node order.
|
None
No user interaction: full automatic layout.
|
Modifier and Type | Method and Description |
---|---|
static LayoutConfiguration.InteractionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LayoutConfiguration.InteractionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutConfiguration.InteractionMode None
public static final LayoutConfiguration.InteractionMode Cycles
public static final LayoutConfiguration.InteractionMode Columns
public static final LayoutConfiguration.InteractionMode Full
public static LayoutConfiguration.InteractionMode[] values()
for (LayoutConfiguration.InteractionMode c : LayoutConfiguration.InteractionMode.values()) System.out.println(c);
public static LayoutConfiguration.InteractionMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null