public enum TooltipAxes extends Enum<TooltipAxes>
| Modifier and Type | Method and Description |
|---|---|
static TooltipAxes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TooltipAxes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TooltipAxes x
public static final TooltipAxes y
public static final TooltipAxes both
public static final TooltipAxes xy
public static final TooltipAxes yx
public static TooltipAxes[] values()
for (TooltipAxes c : TooltipAxes.values()) System.out.println(c);
public static TooltipAxes 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 © 2021. All rights reserved.