public static enum ToolTipPopup.Style extends java.lang.Enum<ToolTipPopup.Style>
Enum Constant and Description |
---|
BLACK
The tool tip will be shown with a black style; including a black background and black
arrows.
|
BLUE
The tool tip will be shown with a blue style; including a blue background and blue
arrows.
|
Modifier and Type | Method and Description |
---|---|
static ToolTipPopup.Style |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ToolTipPopup.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToolTipPopup.Style BLUE
public static final ToolTipPopup.Style BLACK
public static ToolTipPopup.Style[] values()
for (ToolTipPopup.Style c : ToolTipPopup.Style.values()) System.out.println(c);
public static ToolTipPopup.Style 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