Class UserUpdateAvatarEvent
java.lang.Object
net.dv8tion.jda.api.events.Event
net.dv8tion.jda.api.events.user.GenericUserEvent
net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent<String>
net.dv8tion.jda.api.events.user.update.UserUpdateAvatarEvent
- All Implemented Interfaces:
GenericEvent, UpdateEvent<User,String>
Indicates that the Avatar of a
User changed.
Can be used to retrieve the User who changed their avatar and their previous Avatar ID/URL.
Identifier: avatar
Requirements
This event requires the GUILD_MEMBERS intent to be enabled.
createDefault(String) and
createLight(String) disable this by default!
Additionally, this event 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
ConstructorsConstructorDescriptionUserUpdateAvatarEvent(JDA api, long responseNumber, User user, String oldAvatar) -
Method Summary
Modifier and TypeMethodDescriptionReturns anImageProxyfor this user's new avatar image.The new avatar idThe url of the new avatarReturns anImageProxyfor this user's old avatar image.The previous avatar idThe previous avatar urlMethods inherited from class GenericUserUpdateEvent
getEntity, getNewValue, getOldValue, getPropertyIdentifierMethods inherited from class GenericUserEvent
getUserMethods inherited from class Event
getJDA, getRawData, getResponseNumber, toStringMethods inherited from interface GenericEvent
getJDA, getRawData, getResponseNumberMethods inherited from interface UpdateEvent
getEntityType
-
Field Details
-
IDENTIFIER
- See Also:
-
-
Constructor Details
-
UserUpdateAvatarEvent
-
-
Method Details
-
getOldAvatarId
-
getOldAvatarUrl
-
getOldAvatar
Returns anImageProxyfor this user's old avatar image.Note: the old avatar may not always be downloadable as it might have been removed from Discord.
- Returns:
- Possibly-null
ImageProxyof this user's old avatar image - See Also:
-
getNewAvatarId
-
getNewAvatarUrl
The url of the new avatar- Returns:
- The url of the new avatar
-
getNewAvatar
Returns anImageProxyfor this user's new avatar image.- Returns:
- Possibly-null
ImageProxyof this user's new avatar image - See Also:
-