Package org.bukkit.event.entity
Class EntityTeleportEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.EntityTeleportEvent
- All Implemented Interfaces:
Cancellable
- Direct Known Subclasses:
EntityPortalEvent
,EntityPortalExitEvent
,EntityTeleportEndGatewayEvent
Thrown when a non-player entity is teleported from one location to another.
This may be as a result of natural causes (Enderman, Shulker), pathfinding (Wolf), or commands (/teleport).
This may be as a result of natural causes (Enderman, Shulker), pathfinding (Wolf), or commands (/teleport).
-
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
-
Method Summary
Modifier and TypeMethodDescriptiongetFrom()
Gets the location that this entity moved fromstatic @NotNull HandlerList
getTo()
Gets the location that this entity moved toboolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancel) Sets the cancellation state of this event.void
Sets the location that this entity moved fromvoid
Sets the location that this entity moved toMethods inherited from class org.bukkit.event.entity.EntityEvent
getEntity, getEntityType
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
EntityTeleportEvent
-
-
Method Details
-
isCancelled
public boolean isCancelled()Description copied from interface:Cancellable
Gets 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:
isCancelled
in interfaceCancellable
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:Cancellable
Sets 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:
setCancelled
in interfaceCancellable
- Parameters:
cancel
- true if you wish to cancel this event
-
getFrom
Gets the location that this entity moved from- Returns:
- Location this entity moved from
-
setFrom
Sets the location that this entity moved from- Parameters:
from
- New location this entity moved from
-
getTo
Gets the location that this entity moved to- Returns:
- Location the entity moved to
-
setTo
Sets the location that this entity moved to- Parameters:
to
- New Location this entity moved to
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-