Class GuildUpdateFeaturesEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.guild.GenericGuildEvent
-
- net.dv8tion.jda.api.events.guild.update.GenericGuildUpdateEvent<java.util.Set<java.lang.String>>
-
- net.dv8tion.jda.api.events.guild.update.GuildUpdateFeaturesEvent
-
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<Guild,java.util.Set<java.lang.String>>
public class GuildUpdateFeaturesEvent extends GenericGuildUpdateEvent<java.util.Set<java.lang.String>>
Indicates that the features of aGuild
changed.Can be used to detect when the features change and retrieve the old ones
Identifier:
features
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description GuildUpdateFeaturesEvent(JDA api, long responseNumber, Guild guild, java.util.Set<java.lang.String> oldFeatures)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<java.lang.String>
getNewFeatures()
The new Set of features after theGuild
update.java.util.Set<java.lang.String>
getNewValue()
The new valuejava.util.Set<java.lang.String>
getOldFeatures()
The old Set of features before theGuild
update.java.util.Set<java.lang.String>
getOldValue()
The old value-
Methods inherited from class net.dv8tion.jda.api.events.guild.update.GenericGuildUpdateEvent
getEntity, getPropertyIdentifier, toString
-
Methods inherited from class net.dv8tion.jda.api.events.guild.GenericGuildEvent
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
-
-
Method Detail
-
getOldFeatures
@Nonnull public java.util.Set<java.lang.String> getOldFeatures()
The old Set of features before theGuild
update.- Returns:
- Never-null, unmodifiable Set of the old features
-
getNewFeatures
@Nonnull public java.util.Set<java.lang.String> getNewFeatures()
The new Set of features after theGuild
update.- Returns:
- Never-null, unmodifiable Set of the new features
-
getOldValue
@Nonnull public java.util.Set<java.lang.String> getOldValue()
Description copied from interface:UpdateEvent
The old value- Specified by:
getOldValue
in interfaceUpdateEvent<Guild,java.util.Set<java.lang.String>>
- Overrides:
getOldValue
in classGenericGuildUpdateEvent<java.util.Set<java.lang.String>>
- Returns:
- The old value
-
getNewValue
@Nonnull public java.util.Set<java.lang.String> getNewValue()
Description copied from interface:UpdateEvent
The new value- Specified by:
getNewValue
in interfaceUpdateEvent<Guild,java.util.Set<java.lang.String>>
- Overrides:
getNewValue
in classGenericGuildUpdateEvent<java.util.Set<java.lang.String>>
- Returns:
- The new value
-
-