public enum ExpandButtonPosition extends java.lang.Enum<ExpandButtonPosition>
Enum Constant and Description |
---|
OuterBottom
Place expand/collapse buttons at the bottom side of their nodes.
|
OuterLeft
Place expand/collapse buttons at the left-hand side of their nodes.
|
OuterLowerLeft
Place expand/collapse buttons at the lower-left corner of their nodes.
|
OuterLowerRight
Place expand/collapse buttons at the lower-right corner of their nodes.
|
OuterRight
Place expand/collapse buttons at the right-hand side of their nodes.
|
OuterTop
Place expand/collapse buttons at the top side of their nodes.
|
OuterUpperLeft
Place expand/collapse buttons at the upper-left corner of their nodes.
|
OuterUpperRight
Place expand/collapse buttons at the upper-right corner of their nodes.
|
Modifier and Type | Method and Description |
---|---|
static ExpandButtonPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpandButtonPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpandButtonPosition OuterRight
public static final ExpandButtonPosition OuterLowerRight
public static final ExpandButtonPosition OuterUpperRight
public static final ExpandButtonPosition OuterBottom
public static final ExpandButtonPosition OuterLeft
public static final ExpandButtonPosition OuterLowerLeft
public static final ExpandButtonPosition OuterUpperLeft
public static final ExpandButtonPosition OuterTop
public static ExpandButtonPosition[] values()
for (ExpandButtonPosition c : ExpandButtonPosition.values()) System.out.println(c);
public static ExpandButtonPosition 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