public static enum Scheduler.Action extends java.lang.Enum<Scheduler.Action>
Enum Constant and Description |
---|
Advance |
Forward |
Pause |
Play |
Reset |
Rewind |
Step |
StepTimeSet |
Stopped |
Modifier and Type | Method and Description |
---|---|
static Scheduler.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Scheduler.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scheduler.Action Reset
public static final Scheduler.Action Rewind
public static final Scheduler.Action Play
public static final Scheduler.Action Pause
public static final Scheduler.Action Stopped
public static final Scheduler.Action Step
public static final Scheduler.Action Forward
public static final Scheduler.Action Advance
public static final Scheduler.Action StepTimeSet
public static Scheduler.Action[] values()
for (Scheduler.Action c : Scheduler.Action.values()) System.out.println(c);
public static Scheduler.Action valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null