public enum PopOverAlignment extends java.lang.Enum<PopOverAlignment>
| Enum Constant and Description |
|---|
centered
Determines that WebPopOver should be centered relative to WebPopOver display source point.
|
leading
Determines that WebPopOver should be displayed more to the leading side relative to invoker when possible.
|
trailing
Determines that WebPopOver should be displayed more to the trailing side relative to invoker when possible.
|
| Modifier and Type | Method and Description |
|---|---|
static PopOverAlignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PopOverAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PopOverAlignment leading
public static final PopOverAlignment centered
public static final PopOverAlignment trailing
public static PopOverAlignment[] values()
for (PopOverAlignment c : PopOverAlignment.values()) System.out.println(c);
public static PopOverAlignment 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