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