Class TextChannelUpdatePositionEvent
- 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.TextChannelUpdatePositionEvent
-
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<TextChannel,java.lang.Integer>
public class TextChannelUpdatePositionEvent extends GenericTextChannelUpdateEvent<java.lang.Integer>
Indicates that aTextChannel
's position changed.Can be used to detect when a TextChannel position changes and get its previous position.
Identifier:
position
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description TextChannelUpdatePositionEvent(JDA api, long responseNumber, TextChannel channel, int oldPosition)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getNewPosition()
The new positionint
getOldPosition()
The old position-
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
-
TextChannelUpdatePositionEvent
public TextChannelUpdatePositionEvent(@Nonnull JDA api, long responseNumber, @Nonnull TextChannel channel, int oldPosition)
-
-