Package org.bukkit.event.entity
Enum Class CreatureSpawnEvent.SpawnReason
java.lang.Object
java.lang.Enum<CreatureSpawnEvent.SpawnReason>
org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason
- All Implemented Interfaces:
Serializable
,Comparable<CreatureSpawnEvent.SpawnReason>
,Constable
- Enclosing class:
CreatureSpawnEvent
An enum to specify the type of spawning
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionWhen a bee is released from a beehive/bee nestWhen an entity breeds to create a child, this also include Shulker and AllayWhen an iron golem is spawned by being builtWhen a snowman is spawned by being builtWhen a wither boss is spawned by being builtDeprecated.no longer called, chunks are generated with entities already existing.When a creature is spawned by the "/summon" commandWhen a villager is cured from infectionWhen a creature is spawned by pluginsWhen an entity is missing a SpawnReasonWhen a creature is spawned by a dispenser dispensing an eggWhen a creature is spawned by another entity drowningWhen an Allay duplicate itselfWhen a creature spawns from an eggWhen a creature is spawned by an enchantmentWhen an entity is spawned as a result of ender pearl usageWhen an entity is spawned as a result of an explosion.When an entity is shaking in Powder Snow and a new entity spawns.When a zombie infects a villagerWhen an entity spawns as a jockey of another entity (mostly spider jockeys)When a creature spawns because of a lightning strikeWhen a tadpole converts to a frogWhen an entity spawns as a mount of another entity (mostly chicken jockeys)When something spawns from natural meansWhen a creature is spawned by nether portalWhen an ocelot has a baby spawned along with themWhen an entity spawns from an ominous item spawnerWhen an entity is spawned as part of a patrolWhen a piglin is converted to a zombified piglin.When a creature is spawned by a potion effect, for example:PotionType.OOZING
,PotionType.INFESTED
When an entity is spawned as part of a raidWhen an entity calls for reinforcementsWhen a cow is spawned by shearing a mushroom cowWhen an entity is spawned as a result of the entity it is being perched on jumping or being damagedWhen a silverfish spawns from a blockWhen a slime splitsWhen a creature spawns from a spawnerWhen a creature spawns from a Spawner EggWhen an entity is created by a cast spell.When an entity spawns as a trap for players approachingWhen a creature spawns from a trial spawnerWhen an iron golem is spawned to defend a villageWhen a zombie is spawned to invade a village -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static CreatureSpawnEvent.SpawnReason[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NATURAL
When something spawns from natural means -
JOCKEY
When an entity spawns as a jockey of another entity (mostly spider jockeys) -
CHUNK_GEN
Deprecated.no longer called, chunks are generated with entities already existing. Consider usingChunkLoadEvent
,ChunkLoadEvent.isNewChunk()
andChunk.getEntities()
for similar effect.When a creature spawns due to chunk generation -
SPAWNER
When a creature spawns from a spawner -
TRIAL_SPAWNER
When a creature spawns from a trial spawner -
EGG
When a creature spawns from an egg -
SPAWNER_EGG
When a creature spawns from a Spawner Egg -
LIGHTNING
When a creature spawns because of a lightning strike -
BUILD_SNOWMAN
When a snowman is spawned by being built -
BUILD_IRONGOLEM
When an iron golem is spawned by being built -
BUILD_WITHER
When a wither boss is spawned by being built -
VILLAGE_DEFENSE
When an iron golem is spawned to defend a village -
VILLAGE_INVASION
When a zombie is spawned to invade a village -
BREEDING
When an entity breeds to create a child, this also include Shulker and Allay -
SLIME_SPLIT
When a slime splits -
REINFORCEMENTS
When an entity calls for reinforcements -
NETHER_PORTAL
When a creature is spawned by nether portal -
DISPENSE_EGG
When a creature is spawned by a dispenser dispensing an egg -
INFECTION
When a zombie infects a villager -
CURED
When a villager is cured from infection -
OCELOT_BABY
When an ocelot has a baby spawned along with them -
SILVERFISH_BLOCK
When a silverfish spawns from a block -
MOUNT
When an entity spawns as a mount of another entity (mostly chicken jockeys) -
TRAP
When an entity spawns as a trap for players approaching -
ENDER_PEARL
When an entity is spawned as a result of ender pearl usage -
SHOULDER_ENTITY
When an entity is spawned as a result of the entity it is being perched on jumping or being damaged -
DROWNED
When a creature is spawned by another entity drowning -
SHEARED
When a cow is spawned by shearing a mushroom cow -
EXPLOSION
When an entity is spawned as a result of an explosion. Like an area effect cloud from a creeper or a dragon fireball. -
RAID
When an entity is spawned as part of a raid -
PATROL
When an entity is spawned as part of a patrol -
BEEHIVE
When a bee is released from a beehive/bee nest -
PIGLIN_ZOMBIFIED
When a piglin is converted to a zombified piglin. -
SPELL
When an entity is created by a cast spell. -
FROZEN
When an entity is shaking in Powder Snow and a new entity spawns. -
METAMORPHOSIS
When a tadpole converts to a frog -
DUPLICATION
When an Allay duplicate itself -
COMMAND
When a creature is spawned by the "/summon" command -
ENCHANTMENT
When a creature is spawned by an enchantment -
OMINOUS_ITEM_SPAWNER
When an entity spawns from an ominous item spawner -
POTION_EFFECT
When a creature is spawned by a potion effect, for example:PotionType.OOZING
,PotionType.INFESTED
-
CUSTOM
When a creature is spawned by plugins -
DEFAULT
When an entity is missing a SpawnReason
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-