public enum TimerMode extends Enum<TimerMode>
| Enum Constant and Description |
|---|
DOWN
Causes the media clock timer to update from a specified time to 0:00
|
NONE
Indicates to not use the media clock timer
|
UP
Causes the media clock timer to update from 0:00 to a specified time
|
| Modifier and Type | Method and Description |
|---|---|
static TimerMode |
valueForString(String value)
Convert String to TimerMode
|
static TimerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimerMode UP
public static final TimerMode DOWN
public static final TimerMode NONE
public static TimerMode[] values()
for (TimerMode c : TimerMode.values()) System.out.println(c);
public static TimerMode 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