Class UserUpdateActivityOrderEvent
java.lang.Object
net.dv8tion.jda.api.events.Event
net.dv8tion.jda.api.events.user.GenericUserEvent
net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent<List<Activity>>
net.dv8tion.jda.api.events.user.update.UserUpdateActivityOrderEvent
- All Implemented Interfaces:
GenericEvent,UpdateEvent<User,,List<Activity>> GenericUserPresenceEvent
public class UserUpdateActivityOrderEvent
extends GenericUserUpdateEvent<List<Activity>>
implements GenericUserPresenceEvent
Indicates that the
As with any presence updates this happened for a
Activity order of a User changes.
As with any presence updates this happened for a
Member in a Guild!
Can be used to retrieve the User who changed their Activities and their previous Activities.
Identifier: activity_order
Requirements
This event requires the GUILD_PRESENCES 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
ConstructorsConstructorDescriptionUserUpdateActivityOrderEvent(JDA api, long responseNumber, List<Activity> previous, Member member) -
Method Summary
Modifier and TypeMethodDescriptiongetGuild()Guild in which the presence has changed.Member who changed their presence.The new valueThe old valueMethods inherited from class net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent
getEntity, 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
-
UserUpdateActivityOrderEvent
-
-
Method Details
-
getGuild
Description copied from interface:GenericUserPresenceEventGuild in which the presence has changed.- Specified by:
getGuildin interfaceGenericUserPresenceEvent- Returns:
- The guild
-
getMember
Description copied from interface:GenericUserPresenceEventMember who changed their presence.- Specified by:
getMemberin interfaceGenericUserPresenceEvent- Returns:
- The member
-
getOldValue
Description copied from interface:UpdateEventThe old value- Specified by:
getOldValuein interfaceUpdateEvent<User,List<Activity>> - Overrides:
getOldValuein classGenericUserUpdateEvent<List<Activity>>- Returns:
- The old value
-
getNewValue
Description copied from interface:UpdateEventThe new value- Specified by:
getNewValuein interfaceUpdateEvent<User,List<Activity>> - Overrides:
getNewValuein classGenericUserUpdateEvent<List<Activity>>- Returns:
- The new value
-