public static enum ArrangeData.ArrangeStyle extends java.lang.Enum<ArrangeData.ArrangeStyle>
Enum Constant and Description |
---|
FLOW
Arranges the diagram so that all edges are lie in a single direction (currently, down) as
much as possible.
|
INHERITED
Arranged this container using the style of its parent.
|
NONE
Uses the starting element coordinates with as few changes as possible, only normalizing
the diagram and fixing any errors.
|
SPRING_EMBEDDED
Arranges the diagram so that its boxes are laid out symmetrically and line length is
minimized.
|
UNIVERSAL
This layout arranges boxes universally.
|
Modifier and Type | Method and Description |
---|---|
static ArrangeData.ArrangeStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArrangeData.ArrangeStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrangeData.ArrangeStyle NONE
public static final ArrangeData.ArrangeStyle FLOW
public static final ArrangeData.ArrangeStyle UNIVERSAL
public static final ArrangeData.ArrangeStyle SPRING_EMBEDDED
public static final ArrangeData.ArrangeStyle INHERITED
public static ArrangeData.ArrangeStyle[] values()
for (ArrangeData.ArrangeStyle c : ArrangeData.ArrangeStyle.values()) System.out.println(c);
public static ArrangeData.ArrangeStyle 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