Class GuildMemberUpdateNicknameEvent

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

    public class GuildMemberUpdateNicknameEvent
    extends GenericGuildMemberUpdateEvent<java.lang.String>
    Indicates that a Member updated their Guild nickname.

    Can be used to retrieve members who change their nickname, triggering guild, the old nick and the new nick.

    Identifier: nick

    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

      • GuildMemberUpdateNicknameEvent

        public GuildMemberUpdateNicknameEvent​(@Nonnull
                                              JDA api,
                                              long responseNumber,
                                              @Nonnull
                                              Member member,
                                              @Nullable
                                              java.lang.String oldNick)
    • Method Detail

      • getOldNickname

        @Nullable
        public java.lang.String getOldNickname()
        The old nickname
        Returns:
        The old nickname
      • getNewNickname

        @Nullable
        public java.lang.String getNewNickname()
        The new nickname
        Returns:
        The new nickname