|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<PopupStyle> com.alee.managers.popup.PopupStyle
public enum PopupStyle
This enumeration represents predefined available popup styles.
PopupManager
,
WebPopup
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |