public static enum CommandButtonPresentationModel.PopupOrientationKind extends java.lang.Enum<CommandButtonPresentationModel.PopupOrientationKind>
| Enum Constant | Description |
|---|---|
DOWNWARD |
Indicates that the popup should be displayed below the button.
|
SIDEWARD |
Indicates that the popup should be displayed to the side of the
button.
|
| Modifier and Type | Method | Description |
|---|---|---|
static CommandButtonPresentationModel.PopupOrientationKind |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static CommandButtonPresentationModel.PopupOrientationKind[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandButtonPresentationModel.PopupOrientationKind DOWNWARD
public static final CommandButtonPresentationModel.PopupOrientationKind SIDEWARD
public static CommandButtonPresentationModel.PopupOrientationKind[] values()
for (CommandButtonPresentationModel.PopupOrientationKind c : CommandButtonPresentationModel.PopupOrientationKind.values()) System.out.println(c);
public static CommandButtonPresentationModel.PopupOrientationKind 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