public static enum PopupButton.PopupLocation extends java.lang.Enum<PopupButton.PopupLocation>
| Enum Constant and Description | 
|---|
BOTTOM_LEFT
The popup appears underneath and to the left of the button. 
 | 
BOTTOM_RIGHT
The popup appears underneath and to the right of the button. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static PopupButton.PopupLocation | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static PopupButton.PopupLocation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PopupButton.PopupLocation BOTTOM_LEFT
public static final PopupButton.PopupLocation BOTTOM_RIGHT
public static PopupButton.PopupLocation[] values()
for (PopupButton.PopupLocation c : PopupButton.PopupLocation.values()) System.out.println(c);
public static PopupButton.PopupLocation 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