Package org.bukkit.event.entity
Class CreatureSpawnEvent
- java.lang.Object
-
- org.bukkit.event.Event
-
- org.bukkit.event.entity.EntityEvent
-
- org.bukkit.event.entity.EntitySpawnEvent
-
- org.bukkit.event.entity.CreatureSpawnEvent
-
- All Implemented Interfaces:
Cancellable
public class CreatureSpawnEvent extends EntitySpawnEvent
Called when a creature is spawned into a world.If a Creature Spawn event is cancelled, the creature will not spawn.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CreatureSpawnEvent.SpawnReason
An enum to specify the type of spawning-
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 CreatureSpawnEvent(LivingEntity spawnee, CreatureSpawnEvent.SpawnReason spawnReason)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LivingEntity
getEntity()
Returns the Entity involved in this eventCreatureSpawnEvent.SpawnReason
getSpawnReason()
Gets the reason for why the creature is being spawned.-
Methods inherited from class org.bukkit.event.entity.EntitySpawnEvent
getHandlerList, getHandlers, getLocation, isCancelled, setCancelled
-
Methods inherited from class org.bukkit.event.entity.EntityEvent
getEntityType
-
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
-
-
-
Constructor Detail
-
CreatureSpawnEvent
public CreatureSpawnEvent(@NotNull LivingEntity spawnee, @NotNull CreatureSpawnEvent.SpawnReason spawnReason)
-
-
Method Detail
-
getEntity
@NotNull public LivingEntity getEntity()
Description copied from class:EntityEvent
Returns the Entity involved in this event- Overrides:
getEntity
in classEntityEvent
- Returns:
- Entity who is involved in this event
-
getSpawnReason
@NotNull public CreatureSpawnEvent.SpawnReason getSpawnReason()
Gets the reason for why the creature is being spawned.- Returns:
- A SpawnReason value detailing the reason for the creature being spawned
-
-