public static enum LinkHighlight.Flavor extends Enum<LinkHighlight.Flavor>
| Enum Constant and Description |
|---|
NO_HIGHLIGHT |
PRIMARY_HIGHLIGHT |
SECONDARY_HIGHLIGHT |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static LinkHighlight.Flavor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkHighlight.Flavor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkHighlight.Flavor NO_HIGHLIGHT
public static final LinkHighlight.Flavor PRIMARY_HIGHLIGHT
public static final LinkHighlight.Flavor SECONDARY_HIGHLIGHT
public static LinkHighlight.Flavor[] values()
for (LinkHighlight.Flavor c : LinkHighlight.Flavor.values()) System.out.println(c);
public static LinkHighlight.Flavor 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 nullpublic String toString()
toString in class Enum<LinkHighlight.Flavor>