public static enum SplitDockStation.Orientation extends 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(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(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 nullCopyright © 2017 Docking Frames. All rights reserved.