public enum TooltipPosition extends Enum<TooltipPosition>
DeprecatedLithoTooltip
on a component.Enum Constant and Description |
---|
BOTTOM_LEFT |
BOTTOM_RIGHT |
CENTER |
CENTER_BOTTOM |
CENTER_LEFT |
CENTER_RIGHT |
CENTER_TOP |
TOP_LEFT |
TOP_RIGHT |
Modifier and Type | Method and Description |
---|---|
static TooltipPosition |
valueOf(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 CENTER
public static final TooltipPosition BOTTOM_LEFT
public static final TooltipPosition CENTER_LEFT
public static final TooltipPosition TOP_LEFT
public static final TooltipPosition CENTER_TOP
public static final TooltipPosition TOP_RIGHT
public static final TooltipPosition CENTER_RIGHT
public static final TooltipPosition BOTTOM_RIGHT
public static final TooltipPosition CENTER_BOTTOM
public static TooltipPosition[] values()
for (TooltipPosition c : TooltipPosition.values()) System.out.println(c);
public static TooltipPosition valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null