Class UserUpdateDiscriminatorEvent
java.lang.Object
net.dv8tion.jda.api.events.Event
net.dv8tion.jda.api.events.user.GenericUserEvent
net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent<String>
net.dv8tion.jda.api.events.user.update.UserUpdateDiscriminatorEvent
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<User,
String>
Indicates that the discriminator of a
User
changed.
Can be used to retrieve the User who changed their discriminator and their previous discriminator.
Identifier: discriminator
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 Summary
-
Constructor Summary
ConstructorDescriptionUserUpdateDiscriminatorEvent
(JDA api, long responseNumber, User user, String oldDiscriminator) -
Method Summary
Modifier and TypeMethodDescriptionThe new discriminatorThe new valueThe old discriminatorThe old valueMethods 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 Details
-
IDENTIFIER
- See Also:
-
-
Constructor Details
-
UserUpdateDiscriminatorEvent
-
-
Method Details
-
getOldDiscriminator
The old discriminator- Returns:
- The old discriminator
-
getNewDiscriminator
The new discriminator- Returns:
- The new discriminator
-
getOldValue
Description copied from interface:UpdateEvent
The old value- Specified by:
getOldValue
in interfaceUpdateEvent<User,
String> - Overrides:
getOldValue
in classGenericUserUpdateEvent<String>
- Returns:
- The old value
-
getNewValue
Description copied from interface:UpdateEvent
The new value- Specified by:
getNewValue
in interfaceUpdateEvent<User,
String> - Overrides:
getNewValue
in classGenericUserUpdateEvent<String>
- Returns:
- The new value
-