Enum Class VoiceConnection.State

java.lang.Object
java.lang.Enum<VoiceConnection.State>
discord4j.voice.VoiceConnection.State
All Implemented Interfaces:
Serializable, Comparable<VoiceConnection.State>, Constable
Enclosing interface:
VoiceConnection

public static enum VoiceConnection.State extends Enum<VoiceConnection.State>
States of a voice connection.
  • Enum Constant Details

    • CONNECTING

      public static final VoiceConnection.State CONNECTING
      Performing a handshake to establish a voice gateway session.
    • CONNECTED

      public static final VoiceConnection.State CONNECTED
      Voice connection is active and capable of handling audio.
    • RESUMING

      public static final VoiceConnection.State RESUMING
      A voice connection that is scheduled for a resume attempt.
    • RECONNECTING

      public static final VoiceConnection.State RECONNECTING
      A voice connection that is scheduled for a reconnect attempt.
    • DISCONNECTED

      public static final VoiceConnection.State DISCONNECTED
      A voice connection that has disconnected.
  • Method Details

    • values

      public static VoiceConnection.State[] 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 VoiceConnection.State 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