public enum TooltipWay extends java.lang.Enum<TooltipWay>
| Enum Constant and Description |
|---|
down |
leading |
left |
right |
trailing |
up |
| Modifier and Type | Method and Description |
|---|---|
static TooltipWay |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TooltipWay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TooltipWay up
public static final TooltipWay left
public static final TooltipWay leading
public static final TooltipWay down
public static final TooltipWay right
public static final TooltipWay trailing
public static TooltipWay[] values()
for (TooltipWay c : TooltipWay.values()) System.out.println(c);
public static TooltipWay 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