|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<PopOverLocation> com.alee.extended.window.PopOverLocation
public enum PopOverLocation
This enumeration represents possible WebPopOver default display locations on the screen.
WebPopOver
Enum Constant Summary | |
---|---|
bottomCenter
Bottom center of the screen. |
|
bottomLeft
Bottom-left corner of the screen. |
|
bottomRight
Bottom-right corner of the screen. |
|
center
Center of the screen. |
|
leftCenter
Left center of the screen. |
|
rightCenter
Right center of the screen. |
|
topCenter
Top center of the screen. |
|
topLeft
Top-left corner of the screen. |
|
topRight
Top-right corner of the screen. |
Method Summary | |
---|---|
static PopOverLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PopOverLocation[] |
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 PopOverLocation center
public static final PopOverLocation topLeft
public static final PopOverLocation topRight
public static final PopOverLocation bottomLeft
public static final PopOverLocation bottomRight
public static final PopOverLocation topCenter
public static final PopOverLocation bottomCenter
public static final PopOverLocation leftCenter
public static final PopOverLocation rightCenter
Method Detail |
---|
public static PopOverLocation[] values()
for (PopOverLocation c : PopOverLocation.values()) System.out.println(c);
public static PopOverLocation 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 |