UpdateEvent<User,T>GenericUserPresenceEvent, UserUpdateAvatarEvent, UserUpdateDiscriminatorEvent, UserUpdateNameEventpublic abstract class GenericUserUpdateEvent<T> extends GenericUserEvent implements UpdateEvent<User,T>
| Constructor | Description |
|---|---|
GenericUserUpdateEvent(JDA api,
long responseNumber,
User user,
T previous,
T next,
java.lang.String identifier) |
| Modifier and Type | Method | Description |
|---|---|---|
User |
getEntity() |
The affected entity
|
T |
getNewValue() |
The new value
|
T |
getOldValue() |
The old value
|
java.lang.String |
getPropertyIdentifier() |
The field name for the updated property
|
java.lang.String |
toString() |
getJDA, getResponseNumbergetUserequals, getClass, hashCode, notify, notifyAll, wait, wait, waitgetEntityTypepublic User getEntity()
UpdateEventgetEntity in interface UpdateEvent<User,T>public java.lang.String getPropertyIdentifier()
UpdateEvent
@Override
public void onGenericRoleUpdate(GenericRoleUpdateEvent event)
{
switch (event.getPropertyIdentifier())
{
case RoleUpdateColorEvent.IDENTIFIER:
System.out.printf("Updated color for role: %s%n", event);
break;
case RoleUpdatePositionEvent.IDENTIFIER:
RoleUpdatePositionEvent update = (RoleUpdatePositionEvent) event;
System.out.printf("Updated position for role: %s raw(%s->%s)%n", event, update.getOldPositionRaw(), update.getNewPositionRaw());
break;
default: return;
}
}
getPropertyIdentifier in interface UpdateEvent<User,T>public T getOldValue()
UpdateEventgetOldValue in interface UpdateEvent<User,T>public T getNewValue()
UpdateEventgetNewValue in interface UpdateEvent<User,T>public java.lang.String toString()
toString in class java.lang.Object