public static enum SplitDockStation.Orientation extends java.lang.Enum<SplitDockStation.Orientation>
Dockables
are aligned.Enum Constant and Description |
---|
HORIZONTAL
One
Dockable is at the left, the other at the right |
VERTICAL
One
Dockable is at the top, the other at the bottom |
Modifier and Type | Method and Description |
---|---|
static SplitDockStation.Orientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SplitDockStation.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitDockStation.Orientation HORIZONTAL
Dockable
is at the left, the other at the rightpublic static final SplitDockStation.Orientation VERTICAL
Dockable
is at the top, the other at the bottompublic static SplitDockStation.Orientation[] values()
for (SplitDockStation.Orientation c : SplitDockStation.Orientation.values()) System.out.println(c);
public static SplitDockStation.Orientation 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