public enum SubviewerPosition extends Enum<SubviewerPosition>
Enum Constant and Description |
---|
BOTTOM
Indicates that the subviewer panel should be shown below the main viewer
panel.
|
LEFT
Indicates that the subviewer panel should be shown to the left of the
main viewer panel.
|
RIGHT
Indicates that the subviewer panel should be shown to the right of the
main viewer panel.
|
TOP
Indicates that the subviewer panel should be shown above the main viewer
panel.
|
Modifier and Type | Method and Description |
---|---|
static SubviewerPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubviewerPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubviewerPosition RIGHT
public static final SubviewerPosition LEFT
public static final SubviewerPosition TOP
public static final SubviewerPosition BOTTOM
public static SubviewerPosition[] values()
for (SubviewerPosition c : SubviewerPosition.values()) System.out.println(c);
public static SubviewerPosition 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