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
-
-
Field Summary
Fields Modifier and Type Field Description static String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description UserUpdateActivityOrderEvent(net.dv8tion.jda.internal.JDAImpl api, long responseNumber, List<Activity> previous, Member member)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Guild
getGuild()
Guild in which the presence has changed.Member
getMember()
Member who changed their presence.List<Activity>
getNewValue()
The new valueList<Activity>
getOldValue()
The old value-
Methods inherited from class net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent
getEntity, getPropertyIdentifier, toString
-
Methods inherited from class net.dv8tion.jda.api.events.user.GenericUserEvent
getUser
-
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 String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getGuild
@Nonnull public Guild getGuild()
Description copied from interface:GenericUserPresenceEvent
Guild in which the presence has changed.- Specified by:
getGuild
in interfaceGenericUserPresenceEvent
- Returns:
- The guild
-
getMember
@Nonnull public Member getMember()
Description copied from interface:GenericUserPresenceEvent
Member who changed their presence.- Specified by:
getMember
in interfaceGenericUserPresenceEvent
- Returns:
- The member
-
getOldValue
@Nonnull public List<Activity> getOldValue()
Description copied from interface:UpdateEvent
The old value- Specified by:
getOldValue
in interfaceUpdateEvent<User,List<Activity>>
- Overrides:
getOldValue
in classGenericUserUpdateEvent<List<Activity>>
- Returns:
- The old value
-
getNewValue
@Nonnull public List<Activity> getNewValue()
Description copied from interface:UpdateEvent
The new value- Specified by:
getNewValue
in interfaceUpdateEvent<User,List<Activity>>
- Overrides:
getNewValue
in classGenericUserUpdateEvent<List<Activity>>
- Returns:
- The new value
-
-