Class UserUpdateGlobalNameEvent

All Implemented Interfaces:
GenericEvent, UpdateEvent<User,String>

public class UserUpdateGlobalNameEvent extends GenericUserUpdateEvent<String>
Indicates that the global name of a User changed. (Not Nickname)

Can be used to retrieve the User who changed their global name and their previous global name.

Identifier: global_name

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 Details

  • Constructor Details

    • UserUpdateGlobalNameEvent

      public UserUpdateGlobalNameEvent(JDA api, long responseNumber, User user, String oldName)
  • Method Details

    • getOldGlobalName

      @Nullable public String getOldGlobalName()
      The old global name
      Returns:
      The old global name
    • getNewGlobalName

      @Nullable public String getNewGlobalName()
      The new global name
      Returns:
      The new global name
    • toString

      public String toString()
      Overrides:
      toString in class Event