public enum PanePosition extends Enum<PanePosition>
Enum Constant and Description |
---|
BOTTOM_LEFT
Bottom left pane.
|
BOTTOM_RIGHT
Bottom right pane.
|
TOP_LEFT
Top left pane.
|
TOP_RIGHT
Top right pane.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static PanePosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PanePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PanePosition BOTTOM_LEFT
public static final PanePosition BOTTOM_RIGHT
public static final PanePosition TOP_LEFT
public static final PanePosition TOP_RIGHT
public String toString()
toString
in class Enum<PanePosition>
public static PanePosition 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 nullpublic static PanePosition[] values()
for (PanePosition c : PanePosition.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.