public enum Jingle extends Enum<Jingle>
| Enum Constant and Description |
|---|
HELP |
INITIAL |
LISTEN |
NEGATIVE |
POSITIVE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Jingle |
valueForString(String value) |
static Jingle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Jingle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Jingle POSITIVE
public static final Jingle NEGATIVE
public static final Jingle INITIAL
public static final Jingle LISTEN
public static final Jingle HELP
public static Jingle[] values()
for (Jingle c : Jingle.values()) System.out.println(c);
public static Jingle 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