Enum ThreadChannel.AutoArchiveDuration

java.lang.Object
java.lang.Enum<ThreadChannel.AutoArchiveDuration>
net.dv8tion.jda.api.entities.channel.concrete.ThreadChannel.AutoArchiveDuration
All Implemented Interfaces:
Serializable, Comparable<ThreadChannel.AutoArchiveDuration>
Enclosing interface:
ThreadChannel

public static enum ThreadChannel.AutoArchiveDuration extends Enum<ThreadChannel.AutoArchiveDuration>
The values permitted for the auto archive duration of a ThreadChannel.

This is the time before an idle thread will be automatically hidden.

Sending a message to the thread will reset the timer.

See Also:
  • Enum Constant Details

  • Method Details

    • values

      public static ThreadChannel.AutoArchiveDuration[] 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 ThreadChannel.AutoArchiveDuration 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
    • getMinutes

      public int getMinutes()
      The number of minutes before an idle thread will be automatically hidden.
      Returns:
      The number of minutes
    • fromKey

      @Nonnull public static ThreadChannel.AutoArchiveDuration fromKey(int minutes)
      Provides the corresponding enum constant for the provided number of minutes.
      Parameters:
      minutes - The number of minutes. (must be one of the valid values)
      Returns:
      The corresponding enum constant.
      Throws:
      IllegalArgumentException - If the provided minutes is not a valid value.