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 Summary
-
Method Summary
Modifier and TypeMethodDescriptionfromKey
(int minutes) Provides the corresponding enum constant for the provided number of minutes.int
The number of minutes before an idle thread will be automatically hidden.Returns the enum constant of this type with the specified name.static ThreadChannel.AutoArchiveDuration[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TIME_1_HOUR
-
TIME_24_HOURS
-
TIME_3_DAYS
-
TIME_1_WEEK
-
-
Method Details
-
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
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 nameNullPointerException
- 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
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.
-