Class 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).
    • Constructor Detail

      • EntityTeleportEvent

        public EntityTeleportEvent​(@NotNull
                                   Entity what,
                                   @NotNull
                                   Location from,
                                   @Nullable
                                   Location to)
    • Method Detail

      • 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 interface Cancellable
        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 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
      • setFrom

        public 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
      • setTo

        public void setTo​(@Nullable
                          Location to)
        Sets the location that this entity moved to
        Parameters:
        to - New Location this entity moved to
      • getHandlerList

        @NotNull
        public static HandlerList getHandlerList()