public enum LayeredLayoutLinkType extends java.lang.Enum<LayeredLayoutLinkType>
Enum Constant and Description |
---|
Cascading
Indicates cascading links.
|
Straight
Indicates straight links.
|
Modifier and Type | Method and Description |
---|---|
static LayeredLayoutLinkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LayeredLayoutLinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayeredLayoutLinkType Straight
public static final LayeredLayoutLinkType Cascading
public static LayeredLayoutLinkType[] values()
for (LayeredLayoutLinkType c : LayeredLayoutLinkType.values()) System.out.println(c);
public static LayeredLayoutLinkType 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