public static enum LoginButton.ToolTipMode extends Enum<LoginButton.ToolTipMode>
Enum Constant and Description |
---|
DEFAULT
Default display mode.
|
DISPLAY_ALWAYS
Display the tool tip with a local string--regardless of what the server returns
|
NEVER_DISPLAY
Never display the tool tip--regardless of what the server says
|
Modifier and Type | Method and Description |
---|---|
static LoginButton.ToolTipMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoginButton.ToolTipMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginButton.ToolTipMode DEFAULT
public static final LoginButton.ToolTipMode DISPLAY_ALWAYS
public static final LoginButton.ToolTipMode NEVER_DISPLAY
public static LoginButton.ToolTipMode[] values()
for (LoginButton.ToolTipMode c : LoginButton.ToolTipMode.values()) System.out.println(c);
public static LoginButton.ToolTipMode 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