public enum TooltipPosition extends java.lang.Enum<TooltipPosition>
Enum Constant and Description |
---|
BottomLeft
Places on the Bottom Left.
|
BottomRight
Places on the Bottom Right.
|
TopLeft
Places on the Top Left.
|
TopRight
Places on the Top Right.
|
Modifier and Type | Method and Description |
---|---|
static TooltipPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TooltipPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TooltipPosition TopLeft
public static final TooltipPosition TopRight
public static final TooltipPosition BottomLeft
public static final TooltipPosition BottomRight
public static TooltipPosition[] values()
for (TooltipPosition c : TooltipPosition.values()) System.out.println(c);
public static TooltipPosition 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