|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AudioNode.Status>
com.jme3.audio.AudioNode.Status
public static enum AudioNode.Status
Status
indicates the current status of the audio node.
Enum Constant Summary | |
---|---|
Paused
The audio node is currently paused. |
|
Playing
The audio node is currently playing. |
|
Stopped
The audio node is currently stopped. |
Method Summary | |
---|---|
static AudioNode.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AudioNode.Status[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 AudioNode.Status Playing
AudioNode.play()
is called.
public static final AudioNode.Status Paused
public static final AudioNode.Status Stopped
AudioNode.stop()
is called
or the audio has reached the end of the file.
Method Detail |
---|
public static AudioNode.Status[] values()
for (AudioNode.Status c : AudioNode.Status.values()) System.out.println(c);
public static AudioNode.Status 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 |