Class ChannelUpdateFlagsEvent
java.lang.Object
net.dv8tion.jda.api.events.Event
net.dv8tion.jda.api.events.channel.GenericChannelEvent
net.dv8tion.jda.api.events.channel.update.GenericChannelUpdateEvent<EnumSet<ChannelFlag>>
net.dv8tion.jda.api.events.channel.update.ChannelUpdateFlagsEvent
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<Channel,
EnumSet<ChannelFlag>>
Indicates that the
flags
of a Channel
changed.
Can be used to retrieve the old flags and the new ones.
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionChannelUpdateFlagsEvent
(JDA api, long responseNumber, Channel channel, EnumSet<ChannelFlag> oldValue, EnumSet<ChannelFlag> newValue) -
Method Summary
Methods inherited from class net.dv8tion.jda.api.events.channel.update.GenericChannelUpdateEvent
getEntity, getPropertyIdentifier
Methods inherited from class net.dv8tion.jda.api.events.channel.GenericChannelEvent
getChannel, getChannelType, getGuild, isFromGuild, isFromType
Methods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getRawData, getResponseNumber, toString
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, getRawData, getResponseNumber
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
Field Details
-
FIELD
-
IDENTIFIER
-
-
Constructor Details
-
ChannelUpdateFlagsEvent
public ChannelUpdateFlagsEvent(@Nonnull JDA api, long responseNumber, @Nonnull Channel channel, @Nonnull EnumSet<ChannelFlag> oldValue, @Nonnull EnumSet<ChannelFlag> newValue)
-
-
Method Details
-
getOldValue
Description copied from class:GenericChannelUpdateEvent
TheChannel's
old value of the just updated field.- Specified by:
getOldValue
in interfaceUpdateEvent<Channel,
EnumSet<ChannelFlag>> - Overrides:
getOldValue
in classGenericChannelUpdateEvent<EnumSet<ChannelFlag>>
- Returns:
- The old value of the just updated field.
-
getNewValue
Description copied from class:GenericChannelUpdateEvent
TheChannel's
new value of the just updated field.- Specified by:
getNewValue
in interfaceUpdateEvent<Channel,
EnumSet<ChannelFlag>> - Overrides:
getNewValue
in classGenericChannelUpdateEvent<EnumSet<ChannelFlag>>
- Returns:
- The new value of the just updated field.
-