Enum AudioEncryption

java.lang.Object
java.lang.Enum<AudioEncryption>
net.dv8tion.jda.internal.audio.AudioEncryption
All Implemented Interfaces:
Serializable, Comparable<AudioEncryption>

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

    • AEAD_AES256_GCM_RTPSIZE

      public static final AudioEncryption AEAD_AES256_GCM_RTPSIZE
    • AEAD_XCHACHA20_POLY1305_RTPSIZE

      public static final AudioEncryption AEAD_XCHACHA20_POLY1305_RTPSIZE
  • Method Details

    • values

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

      public static AudioEncryption valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • getKey

      public String getKey()
    • getPreferredMode

      public static AudioEncryption getPreferredMode(DataArray array)
    • fromArray

      public static EnumSet<AudioEncryption> fromArray(DataArray modes)
    • forMode

      public static AudioEncryption forMode(String mode)