public enum PopOverDirection extends java.lang.Enum<PopOverDirection>
WebPopOver| Enum Constant and Description |
|---|
down
Display pop-over below invoker component.
|
left
Display pop-over leading to the invoker component.
|
right
Display pop-over trailing to the invoker component.
|
up
Display pop-over above invoker component.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCornerSide(boolean ltr)
Returns WebPopOver corner side.
|
PopOverDirection[] |
getPriority()
Returns directions check priority according to preferred direction.
|
static PopOverDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PopOverDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PopOverDirection up
public static final PopOverDirection down
public static final PopOverDirection left
public static final PopOverDirection right
public static PopOverDirection[] values()
for (PopOverDirection c : PopOverDirection.values()) System.out.println(c);
public static PopOverDirection 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 nullpublic PopOverDirection[] getPriority()
public int getCornerSide(boolean ltr)
ltr - whether pop-over has LTR orientation or not