Package org.bukkit.event.entity
Class EntityPortalEvent
- java.lang.Object
-
- org.bukkit.event.Event
-
- org.bukkit.event.entity.EntityEvent
-
- org.bukkit.event.entity.EntityTeleportEvent
-
- org.bukkit.event.entity.EntityPortalEvent
-
- All Implemented Interfaces:
Cancellable
public class EntityPortalEvent extends EntityTeleportEvent
Called when a non-player entity is about to teleport because it is in contact with a portal.For players see
PlayerPortalEvent
-
-
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
Constructors Constructor Description EntityPortalEvent(Entity entity, Location from, Location to)
EntityPortalEvent(Entity entity, Location from, Location to, int searchRadius)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HandlerList
getHandlerList()
HandlerList
getHandlers()
int
getSearchRadius()
Gets the search radius value for finding an available portal.void
setSearchRadius(int searchRadius)
Set the Block radius to search in for available portals.-
Methods inherited from class org.bukkit.event.entity.EntityTeleportEvent
getFrom, getTo, isCancelled, setCancelled, setFrom, setTo
-
Methods inherited from class org.bukkit.event.entity.EntityEvent
getEntity, getEntityType
-
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
-
-
-
Method Detail
-
setSearchRadius
public void setSearchRadius(int searchRadius)
Set the Block radius to search in for available portals.- Parameters:
searchRadius
- the radius in which to search for a portal from the location
-
getSearchRadius
public int getSearchRadius()
Gets the search radius value for finding an available portal.- Returns:
- the currently set search radius
-
getHandlers
@NotNull public HandlerList getHandlers()
- Overrides:
getHandlers
in classEntityTeleportEvent
-
getHandlerList
@NotNull public static HandlerList getHandlerList()
-
-