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>
public class UserUpdateDiscriminatorEvent extends GenericUserUpdateEvent<String>
Indicates that the discriminator of aUser
changed.Can be used to retrieve the User who changed their discriminator and their previous discriminator.
Identifier:
discriminator
-
-
Field Summary
Fields Modifier and Type Field Description static String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description UserUpdateDiscriminatorEvent(JDA api, long responseNumber, User user, String oldDiscriminator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getNewDiscriminator()
The new discriminatorString
getNewValue()
The new valueString
getOldDiscriminator()
The old discriminatorString
getOldValue()
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
-
getOldDiscriminator
@Nonnull public String getOldDiscriminator()
The old discriminator- Returns:
- The old discriminator
-
getNewDiscriminator
@Nonnull public String getNewDiscriminator()
The new discriminator- Returns:
- The new discriminator
-
getOldValue
@Nonnull public String 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
@Nonnull public String 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
-
-