Class RoleUpdatePositionEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.role.GenericRoleEvent
-
- net.dv8tion.jda.api.events.role.update.GenericRoleUpdateEvent<java.lang.Integer>
-
- net.dv8tion.jda.api.events.role.update.RoleUpdatePositionEvent
-
- All Implemented Interfaces:
GenericEvent,UpdateEvent<Role,java.lang.Integer>
public class RoleUpdatePositionEvent extends GenericRoleUpdateEvent<java.lang.Integer>
Indicates that aRoleupdated its position.Can be used to retrieve the old position.
Identifier:
position
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringIDENTIFIER
-
Constructor Summary
Constructors Constructor Description RoleUpdatePositionEvent(JDA api, long responseNumber, Role role, int oldPosition, int oldPositionRaw)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetNewPosition()The new positionintgetNewPositionRaw()The new positionjava.lang.IntegergetNewValue()The new valueintgetOldPosition()The old positionintgetOldPositionRaw()The old positionjava.lang.IntegergetOldValue()The old value-
Methods inherited from class net.dv8tion.jda.api.events.role.update.GenericRoleUpdateEvent
getEntity, getPropertyIdentifier, toString
-
Methods inherited from class net.dv8tion.jda.api.events.role.GenericRoleEvent
getGuild, getRole
-
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 java.lang.String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getOldPosition
public int getOldPosition()
The old position- Returns:
- The old position
-
getOldPositionRaw
public int getOldPositionRaw()
The old position- Returns:
- The old position
-
getNewPosition
public int getNewPosition()
The new position- Returns:
- The new position
-
getNewPositionRaw
public int getNewPositionRaw()
The new position- Returns:
- The new position
-
getOldValue
@Nonnull public java.lang.Integer getOldValue()
Description copied from interface:UpdateEventThe old value- Specified by:
getOldValuein interfaceUpdateEvent<Role,java.lang.Integer>- Overrides:
getOldValuein classGenericRoleUpdateEvent<java.lang.Integer>- Returns:
- The old value
-
getNewValue
@Nonnull public java.lang.Integer getNewValue()
Description copied from interface:UpdateEventThe new value- Specified by:
getNewValuein interfaceUpdateEvent<Role,java.lang.Integer>- Overrides:
getNewValuein classGenericRoleUpdateEvent<java.lang.Integer>- Returns:
- The new value
-
-