public enum TreeViewConnectionStyle extends java.lang.Enum<TreeViewConnectionStyle>
ConnectionStyle
property of TreeViewNode class.Enum Constant and Description |
---|
Items
Users are allowed to draw relations to individual items of a TreeViewNode.
|
Node
Users are allowed to draw relations to the TreeViewNode as an integral entity.
|
Modifier and Type | Method and Description |
---|---|
static TreeViewConnectionStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TreeViewConnectionStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeViewConnectionStyle Node
public static final TreeViewConnectionStyle Items
public static TreeViewConnectionStyle[] values()
for (TreeViewConnectionStyle c : TreeViewConnectionStyle.values()) System.out.println(c);
public static TreeViewConnectionStyle 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