public enum PopupStyle extends java.lang.Enum<PopupStyle>
PopupManager,
WebPopup| Enum Constant and Description |
|---|
bevel
Popup with bevel border.
|
bordered
Simple bordered popup.
|
dark
Dark-colored popup.
|
gray
Gray-colored popup.
|
grayDownTip
Gray-colored tooltip-styled popup.
|
grayEtched
Gray-colored popup with etched border.
|
graySmall
Gray-colored popup with small border.
|
greenLarge
Green-colored popup with large border.
|
light
Light-colored popup.
|
lightSmall
Light-colored popup with small border.
|
none
Undecorated popup.
|
| Modifier and Type | Method and Description |
|---|---|
static PopupStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PopupStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PopupStyle none
public static final PopupStyle bordered
public static final PopupStyle light
public static final PopupStyle lightSmall
public static final PopupStyle greenLarge
public static final PopupStyle bevel
public static final PopupStyle gray
public static final PopupStyle graySmall
public static final PopupStyle grayEtched
public static final PopupStyle grayDownTip
public static final PopupStyle dark
public static PopupStyle[] values()
for (PopupStyle c : PopupStyle.values()) System.out.println(c);
public static PopupStyle 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