UpdateEvent<Emote,T>
EmoteUpdateNameEvent
, EmoteUpdateRolesEvent
public abstract class GenericEmoteUpdateEvent<T> extends GenericEmoteEvent implements UpdateEvent<Emote,T>
Emote
was updated.Constructor | Description |
---|---|
GenericEmoteUpdateEvent(JDA api,
long responseNumber,
Emote emote,
T previous,
T next,
java.lang.String identifier) |
Modifier and Type | Method | Description |
---|---|---|
Emote |
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, getResponseNumber
getEmote, getGuild, isManaged
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
getEntityType
public Emote getEntity()
UpdateEvent
getEntity
in interface UpdateEvent<Emote,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<Emote,T>
public T getOldValue()
UpdateEvent
getOldValue
in interface UpdateEvent<Emote,T>
public T getNewValue()
UpdateEvent
getNewValue
in interface UpdateEvent<Emote,T>
public java.lang.String toString()
toString
in class java.lang.Object