public enum PopOverLocation extends java.lang.Enum<PopOverLocation>
WebPopOver| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
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
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 namejava.lang.NullPointerException - if the argument is null