public static enum AbstractLayoutConfiguration.InteractionMode extends java.lang.Enum<AbstractLayoutConfiguration.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 AbstractLayoutConfiguration.InteractionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractLayoutConfiguration.InteractionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractLayoutConfiguration.InteractionMode None
public static final AbstractLayoutConfiguration.InteractionMode Cycles
public static final AbstractLayoutConfiguration.InteractionMode Columns
public static final AbstractLayoutConfiguration.InteractionMode Full
public static AbstractLayoutConfiguration.InteractionMode[] values()
for (AbstractLayoutConfiguration.InteractionMode c : AbstractLayoutConfiguration.InteractionMode.values()) System.out.println(c);
public static AbstractLayoutConfiguration.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