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 SummaryNested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
- 
Field SummaryFields inherited from class org.bukkit.event.entity.EntityEvententity
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptiongetFrom()Gets the location that this entity moved fromstatic @NotNull HandlerListgetTo()Gets the location that this entity moved tobooleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidSets the location that this entity moved fromvoidSets the location that this entity moved toMethods inherited from class org.bukkit.event.entity.EntityEventgetEntity, getEntityTypeMethods inherited from class org.bukkit.event.Eventasynchronous, callEvent, getEventName, isAsynchronous
- 
Constructor Details- 
EntityTeleportEvent
 
- 
- 
Method Details- 
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
 
- 
getFromGets the location that this entity moved from- Returns:
- Location this entity moved from
 
- 
setFromSets the location that this entity moved from- Parameters:
- from- New location this entity moved from
 
- 
getToGets the location that this entity moved to- Returns:
- Location the entity moved to
 
- 
setToSets the location that this entity moved to- Parameters:
- to- New Location this entity moved to
 
- 
getHandlers- Specified by:
- getHandlersin class- Event
 
- 
getHandlerList
 
-