Class UserUpdateNameEvent

  • All Implemented Interfaces:
    GenericEvent, UpdateEvent<User,​java.lang.String>

    public class UserUpdateNameEvent
    extends GenericUserUpdateEvent<java.lang.String>
    Indicates that the username of a User changed. (Not Nickname)

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

    Identifier: 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.

    • Constructor Detail

      • UserUpdateNameEvent

        public UserUpdateNameEvent​(@Nonnull
                                   JDA api,
                                   long responseNumber,
                                   @Nonnull
                                   User user,
                                   @Nonnull
                                   java.lang.String oldName)
    • Method Detail

      • getOldName

        @Nonnull
        public java.lang.String getOldName()
        The old username
        Returns:
        The old username
      • getNewName

        @Nonnull
        public java.lang.String getNewName()
        The new username
        Returns:
        The new username