Package org.bukkit.event.entity
Class EntityDismountEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.EntityDismountEvent
- All Implemented Interfaces:
Cancellable
Called when an entity stops riding another entity.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result -
Field Summary
Fields inherited from class org.bukkit.event.entity.EntityEvent
entity -
Constructor Summary
ConstructorsConstructorDescriptionEntityDismountEvent(@NotNull Entity entity, @NotNull Entity dismounted) EntityDismountEvent(@NotNull Entity entity, @NotNull Entity dismounted, boolean isCancellable) -
Method Summary
Modifier and TypeMethodDescriptionGets the entity which will no longer be ridden.static @NotNull HandlerListbooleanbooleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.Methods inherited from class org.bukkit.event.entity.EntityEvent
getEntity, getEntityTypeMethods inherited from class org.bukkit.event.Event
callEvent, getEventContext, getEventName, isAsynchronous, isSupportInterrupt
-
Constructor Details
-
EntityDismountEvent
-
EntityDismountEvent
-
-
Method Details
-
getDismounted
Gets the entity which will no longer be ridden.- Returns:
- dismounted entity
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableGets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
isCancelledin interfaceCancellable- Returns:
trueif this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableSets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
setCancelledin interfaceCancellable- Parameters:
cancel-trueif you wish to cancel this event
-
isCancellable
public boolean isCancellable() -
getHandlers
- Specified by:
getHandlersin classEvent
-
getHandlerList
-