public static enum SplitDockPathProperty.Location extends Enum<SplitDockPathProperty.Location>
Enum Constant and Description |
---|
BOTTOM
the tree splits vertically and the path is to the bottom
|
LEFT
the tree splits horizontally and the path is to the left
|
RIGHT
the tree splits horizontally and the path is to the right
|
TOP
the tree splits vertically and the path is to the top
|
Modifier and Type | Method and Description |
---|---|
static SplitDockPathProperty.Location |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SplitDockPathProperty.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitDockPathProperty.Location LEFT
public static final SplitDockPathProperty.Location RIGHT
public static final SplitDockPathProperty.Location TOP
public static final SplitDockPathProperty.Location BOTTOM
public static SplitDockPathProperty.Location[] values()
for (SplitDockPathProperty.Location c : SplitDockPathProperty.Location.values()) System.out.println(c);
public static SplitDockPathProperty.Location valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null