Enum Class AudioNode.Status

java.lang.Object
java.lang.Enum<AudioNode.Status>
com.jme3.audio.AudioNode.Status
All Implemented Interfaces:
Serializable, Comparable<AudioNode.Status>, Constable
Enclosing class:
AudioNode

@Deprecated public static enum AudioNode.Status extends Enum<AudioNode.Status>
Deprecated.
- use AudioSource.Status instead
Status indicates the current status of the audio node.
  • Enum Constant Details

    • Playing

      public static final AudioNode.Status Playing
      Deprecated.
      The audio node is currently playing. This will be set if AudioNode.play() is called.
    • Paused

      public static final AudioNode.Status Paused
      Deprecated.
      The audio node is currently paused.
    • Stopped

      public static final AudioNode.Status Stopped
      Deprecated.
      The audio node is currently stopped. This will be set if AudioNode.stop() is called or the audio has reached the end of the file.
  • Method Details

    • values

      public static AudioNode.Status[] values()
      Deprecated.
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AudioNode.Status valueOf(String name)
      Deprecated.
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null