@Deprecated public static enum AudioNode.Status extends java.lang.Enum<AudioNode.Status>
Status indicates the current status of the audio node.| Enum Constant and Description | 
|---|
| PausedDeprecated.  The audio node is currently paused. | 
| PlayingDeprecated.  The audio node is currently playing. | 
| StoppedDeprecated.  The audio node is currently stopped. | 
| Modifier and Type | Method and Description | 
|---|---|
| static AudioNode.Status | valueOf(java.lang.String name)Deprecated.  Returns the enum constant of this type with the specified name. | 
| static AudioNode.Status[] | values()Deprecated.  Returns an array containing the constants of this enum type, in
the order they are declared. | 
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.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 namejava.lang.NullPointerException - if the argument is null