public static enum BalloonTip.AttachLocation extends Enum<BalloonTip.AttachLocation>
Enum Constant and Description |
---|
ALIGNED |
CENTER |
EAST |
NORTH |
NORTHEAST |
NORTHWEST |
SOUTH |
SOUTHEAST |
SOUTHWEST |
WEST |
Modifier and Type | Method and Description |
---|---|
static BalloonTip.AttachLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BalloonTip.AttachLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BalloonTip.AttachLocation ALIGNED
public static final BalloonTip.AttachLocation CENTER
public static final BalloonTip.AttachLocation NORTH
public static final BalloonTip.AttachLocation NORTHEAST
public static final BalloonTip.AttachLocation EAST
public static final BalloonTip.AttachLocation SOUTHEAST
public static final BalloonTip.AttachLocation SOUTH
public static final BalloonTip.AttachLocation SOUTHWEST
public static final BalloonTip.AttachLocation WEST
public static final BalloonTip.AttachLocation NORTHWEST
public static BalloonTip.AttachLocation[] values()
for (BalloonTip.AttachLocation c : BalloonTip.AttachLocation.values()) System.out.println(c);
public static BalloonTip.AttachLocation 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