public enum TooltipType extends Enum<TooltipType>
| Enum Constant and Description |
|---|
A |
COMMAND_LINK |
READONLY_TEXT |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static TooltipType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TooltipType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TooltipType A
public static final TooltipType COMMAND_LINK
public static final TooltipType TEXT
public static final TooltipType READONLY_TEXT
public final String label
public static TooltipType[] values()
for (TooltipType c : TooltipType.values()) System.out.println(c);
public static TooltipType 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 nullCopyright © 2019. All rights reserved.