Enum Class VoiceStatus

java.lang.Object
java.lang.Enum<VoiceStatus>
com.reign.kat.lib.voice.VoiceStatus
All Implemented Interfaces:
Serializable, Comparable<VoiceStatus>, Constable

public enum VoiceStatus extends Enum<VoiceStatus>
  • Enum Constant Details

    • NOT_INITIALIZED

      public static final VoiceStatus NOT_INITIALIZED
    • JOINED_CHANNEL

      public static final VoiceStatus JOINED_CHANNEL
    • LOADING_TRACK

      public static final VoiceStatus LOADING_TRACK
    • LOADING_PLAYLIST

      public static final VoiceStatus LOADING_PLAYLIST
    • PLAYING_TRACK

      public static final VoiceStatus PLAYING_TRACK
    • PAUSED_TRACK

      public static final VoiceStatus PAUSED_TRACK
    • QUEUE_EMPTY

      public static final VoiceStatus QUEUE_EMPTY
    • LOAD_TRACK_ERROR

      public static final VoiceStatus LOAD_TRACK_ERROR
    • ERROR

      public static final VoiceStatus ERROR
  • Method Details

    • values

      public static VoiceStatus[] values()
      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 VoiceStatus valueOf(String name)
      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