Class UserUpdateOnlineStatusEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.user.GenericUserEvent
-
- net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent<OnlineStatus>
-
- net.dv8tion.jda.api.events.user.update.UserUpdateOnlineStatusEvent
-
- All Implemented Interfaces:
GenericEvent,UpdateEvent<User,OnlineStatus>,GenericUserPresenceEvent
public class UserUpdateOnlineStatusEvent extends GenericUserUpdateEvent<OnlineStatus> implements GenericUserPresenceEvent
Indicates that theOnlineStatusof aUserchanged.
As with any presence updates this happened for aMemberin a Guild!
This event requiresguild subscriptionsto be enabled.Can be used to retrieve the User who changed their status and their previous status.
Identifier:
status
-
-
Field Summary
Fields Modifier and Type Field Description static StringIDENTIFIER
-
Constructor Summary
Constructors Constructor Description UserUpdateOnlineStatusEvent(JDA api, long responseNumber, Member member, OnlineStatus oldOnlineStatus)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GuildgetGuild()Guild in which the presence has changed.MembergetMember()Member who changed their presence.OnlineStatusgetNewOnlineStatus()The new statusOnlineStatusgetNewValue()The new valueOnlineStatusgetOldOnlineStatus()The old statusOnlineStatusgetOldValue()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:GenericUserPresenceEventGuild in which the presence has changed.- Specified by:
getGuildin interfaceGenericUserPresenceEvent- Returns:
- The guild
-
getMember
@Nonnull public Member getMember()
Description copied from interface:GenericUserPresenceEventMember who changed their presence.- Specified by:
getMemberin interfaceGenericUserPresenceEvent- Returns:
- The member
-
getOldOnlineStatus
@Nonnull public OnlineStatus getOldOnlineStatus()
The old status- Returns:
- The old status
-
getNewOnlineStatus
@Nonnull public OnlineStatus getNewOnlineStatus()
The new status- Returns:
- The new status
-
getOldValue
@Nonnull public OnlineStatus getOldValue()
Description copied from interface:UpdateEventThe old value- Specified by:
getOldValuein interfaceUpdateEvent<User,OnlineStatus>- Overrides:
getOldValuein classGenericUserUpdateEvent<OnlineStatus>- Returns:
- The old value
-
getNewValue
@Nonnull public OnlineStatus getNewValue()
Description copied from interface:UpdateEventThe new value- Specified by:
getNewValuein interfaceUpdateEvent<User,OnlineStatus>- Overrides:
getNewValuein classGenericUserUpdateEvent<OnlineStatus>- Returns:
- The new value
-
-