public static enum BalloonTip.Orientation extends Enum<BalloonTip.Orientation>
Enum Constant and Description |
---|
LEFT_ABOVE |
LEFT_BELOW |
RIGHT_ABOVE |
RIGHT_BELOW |
Modifier and Type | Method and Description |
---|---|
static BalloonTip.Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BalloonTip.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BalloonTip.Orientation LEFT_ABOVE
public static final BalloonTip.Orientation RIGHT_ABOVE
public static final BalloonTip.Orientation LEFT_BELOW
public static final BalloonTip.Orientation RIGHT_BELOW
public static BalloonTip.Orientation[] values()
for (BalloonTip.Orientation c : BalloonTip.Orientation.values()) System.out.println(c);
public static BalloonTip.Orientation 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