public enum TooltipPosition extends Enum<TooltipPosition>
Enum Constant and Description |
---|
BOTTOM
The tooltip is positioned below its target.
|
LEFT
The tooltip is positioned at the left of its target.
|
RIGHT
The tooltip is positioned at the right of its target.
|
TOP
The tooltip is positioned above its target.
|
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 LEFT
public static final TooltipPosition RIGHT
public static final TooltipPosition TOP
public static final TooltipPosition 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 nullCopyright © 2016 com.github.ilyes4j. All rights reserved.