Class TextChannelUpdateSlowmodeEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.channel.text.GenericTextChannelEvent
-
- net.dv8tion.jda.api.events.channel.text.update.GenericTextChannelUpdateEvent<java.lang.Integer>
-
- net.dv8tion.jda.api.events.channel.text.update.TextChannelUpdateSlowmodeEvent
-
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<TextChannel,java.lang.Integer>
public class TextChannelUpdateSlowmodeEvent extends GenericTextChannelUpdateEvent<java.lang.Integer>
Indicates that aTextChannel
's slowmode changed.Can be used to detect when a TextChannel slowmode changes and get its previous value.
Identifier:
slowmode
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description TextChannelUpdateSlowmodeEvent(JDA api, long responseNumber, TextChannel channel, int oldSlowmode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getNewSlowmode()
The new slowmode.int
getOldSlowmode()
The old slowmode.-
Methods inherited from class net.dv8tion.jda.api.events.channel.text.update.GenericTextChannelUpdateEvent
getEntity, getNewValue, getOldValue, getPropertyIdentifier, toString
-
Methods inherited from class net.dv8tion.jda.api.events.channel.text.GenericTextChannelEvent
getChannel, getGuild
-
Methods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getResponseNumber
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.dv8tion.jda.api.events.GenericEvent
getJDA, getResponseNumber
-
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
-
-
-
Field Detail
-
IDENTIFIER
public static final java.lang.String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TextChannelUpdateSlowmodeEvent
public TextChannelUpdateSlowmodeEvent(@Nonnull JDA api, long responseNumber, @Nonnull TextChannel channel, int oldSlowmode)
-
-