Class UserUpdateFlagsEvent
java.lang.Object
net.dv8tion.jda.api.events.Event
net.dv8tion.jda.api.events.user.GenericUserEvent
net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent<EnumSet<User.UserFlag>>
net.dv8tion.jda.api.events.user.update.UserUpdateFlagsEvent
- All Implemented Interfaces:
GenericEvent,UpdateEvent<User,EnumSet<User.UserFlag>>
Indicates that the
UserFlags of a User changed.
Can be used to retrieve the User who got their flags changed and their previous flags.
Identifier: public_flags
Requirements
This event requires the GUILD_MEMBERS intent to be enabled.
createDefault(String) and
createLight(String) disable this by default!
Additionally, this event also requires the MemberCachePolicy
to cache the updated members. Discord does not specifically tell us about the updates, but merely tells us the
member was updated and gives us the updated member object. In order to fire a specific event like this we
need to have the old member cached to compare against.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionUserUpdateFlagsEvent(JDA api, long responseNumber, User user, EnumSet<User.UserFlag> oldFlags) -
Method Summary
Methods inherited from class net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent
getEntity, getNewValue, getOldValue, getPropertyIdentifierMethods inherited from class net.dv8tion.jda.api.events.user.GenericUserEvent
getUserMethods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getRawData, getResponseNumber, toStringMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface net.dv8tion.jda.api.events.GenericEvent
getJDA, getRawData, getResponseNumberMethods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
Field Details
-
IDENTIFIER
- See Also:
-
-
Constructor Details
-
UserUpdateFlagsEvent
-
-
Method Details
-
getOldFlags
-
getOldFlagsRaw
public int getOldFlagsRaw()Gets the oldUserFlagsof the user and returns it as bitmask representation.- Returns:
- The old bitmask representation of the
UserFlags.
-
getNewFlags
- Returns:
- The new
EnumSet<{@link net.dv8tion.jda.api.entities.User.UserFlag UserFlag}>representation of the User's flags.
-
getNewFlagsRaw
public int getNewFlagsRaw()Gets the newUserFlagsof the user and returns it as bitmask representation.- Returns:
- The new bitmask representation of the
UserFlags.
-