|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Sequencer.Event.Type>
ioio.lib.api.Sequencer.Event.Type
public static enum Sequencer.Event.Type
Event type.
| Enum Constant Summary | |
|---|---|
CLOSED
This event type is only sent once, when the sequencer has been closed. |
|
CUE_STARTED
A new cue has started executing. |
|
PAUSED
A cue has ended execution and the sequencer is idle as result of a pause request. |
|
STALLED
A cue has ended execution and the sequencer is idle as result of the queue becoming empty. |
|
STOPPED
The sequencer has been stopped or never started. |
|
| Method Summary | |
|---|---|
static Sequencer.Event.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Sequencer.Event.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Sequencer.Event.Type STOPPED
public static final Sequencer.Event.Type CUE_STARTED
public static final Sequencer.Event.Type PAUSED
public static final Sequencer.Event.Type STALLED
public static final Sequencer.Event.Type CLOSED
Sequencer.waitEvent(). It is also
used if Sequencer.getLastEvent() is called before any event has been sent.
| Method Detail |
|---|
public static Sequencer.Event.Type[] values()
for (Sequencer.Event.Type c : Sequencer.Event.Type.values()) System.out.println(c);
public static Sequencer.Event.Type 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 name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||