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
 
 public class EntityTeleportEvent extends EntityEvent implements Cancellable 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).
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
 
- 
 - 
Field Summary- 
Fields inherited from class org.bukkit.event.entity.EntityEvententity
 
- 
 - 
Constructor SummaryConstructors Constructor Description EntityTeleportEvent(Entity what, Location from, Location to)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description LocationgetFrom()Gets the location that this entity moved fromstatic HandlerListgetHandlerList()HandlerListgetHandlers()LocationgetTo()Gets the location that this entity moved tobooleanisCancelled()Gets the cancellation state of this event.voidsetCancelled(boolean cancel)Sets the cancellation state of this event.voidsetFrom(Location from)Sets the location that this entity moved fromvoidsetTo(Location to)Sets the location that this entity moved to- 
Methods inherited from class org.bukkit.event.entity.EntityEventgetEntity, getEntityType
 - 
Methods inherited from class org.bukkit.event.EventgetEventName, isAsynchronous
 
- 
 
- 
- 
- 
Method Detail- 
isCancelledpublic 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 interface- Cancellable
- Returns:
- true if this event is cancelled
 
 - 
setCancelledpublic 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 interface- Cancellable
- Parameters:
- cancel- true if you wish to cancel this event
 
 - 
getFrom@NotNull public Location getFrom() Gets the location that this entity moved from- Returns:
- Location this entity moved from
 
 - 
setFrompublic void setFrom(@NotNull Location from)Sets the location that this entity moved from- Parameters:
- from- New location this entity moved from
 
 - 
getTo@Nullable public Location getTo() Gets the location that this entity moved to- Returns:
- Location the entity moved to
 
 - 
setTopublic void setTo(@Nullable Location to)Sets the location that this entity moved to- Parameters:
- to- New Location this entity moved to
 
 - 
getHandlers@NotNull public HandlerList getHandlers() - Specified by:
- getHandlersin class- Event
 
 - 
getHandlerList@NotNull public static HandlerList getHandlerList() 
 
- 
 
-