Class RoleUpdateHoistedEvent
- 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.Boolean>
-
- net.dv8tion.jda.api.events.role.update.RoleUpdateHoistedEvent
-
- All Implemented Interfaces:
GenericEvent,UpdateEvent<Role,java.lang.Boolean>
public class RoleUpdateHoistedEvent extends GenericRoleUpdateEvent<java.lang.Boolean>
Indicates that aRoleupdated its hoist state.Can be used to retrieve the hoist state.
Identifier:
hoist
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringIDENTIFIER
-
Constructor Summary
Constructors Constructor Description RoleUpdateHoistedEvent(JDA api, long responseNumber, Role role, boolean wasHoisted)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.BooleangetNewValue()The new valuejava.lang.BooleangetOldValue()The old valuebooleanwasHoisted()Whether the role was hoisted-
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
-
wasHoisted
public boolean wasHoisted()
Whether the role was hoisted- Returns:
- True, if the role was hoisted before this update
-
getOldValue
@Nonnull public java.lang.Boolean getOldValue()
Description copied from interface:UpdateEventThe old value- Specified by:
getOldValuein interfaceUpdateEvent<Role,java.lang.Boolean>- Overrides:
getOldValuein classGenericRoleUpdateEvent<java.lang.Boolean>- Returns:
- The old value
-
getNewValue
@Nonnull public java.lang.Boolean getNewValue()
Description copied from interface:UpdateEventThe new value- Specified by:
getNewValuein interfaceUpdateEvent<Role,java.lang.Boolean>- Overrides:
getNewValuein classGenericRoleUpdateEvent<java.lang.Boolean>- Returns:
- The new value
-
-