Package org.bukkit.entity
Enum EntityType
- All Implemented Interfaces:
Serializable
,Comparable<EntityType>
,java.lang.constant.Constable
,Keyed
,Translatable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMechanical entity with an inventory for placing weapons / armor into.An arrow projectile; may get stuck in the ground.A placed boat.LikeFIREBALL
but with added effects.An item resting on the ground.A flying chicken egg.A flying ender pearl.An ender eye signal.An experience orb.A block that is going to or is about to fall.A flying large fireball, as thrown by a Ghast for example.Internal representation of a Firework once it has been launched.A fishing line and bobber.An item frame on a wall.A leash attached to a fencepost.A bolt of lightning.A painting on a wall.Primed TNT that is about to explode.Bullet fired bySHULKER
.A flying small fireball, such as thrown by a Blaze or player.A flying snowball.LikeARROW
but causes thePotionEffectType.GLOWING
effect on all team members.A flying splash potion.A flying experience bottle.An unknown entity without an Entity ClassA flying wither skull projectile. -
Method Summary
Modifier and TypeMethodDescriptionstatic EntityType
fromId
(int id) Deprecated.Magic valuestatic EntityType
Deprecated.Magic valuegetKey()
Return the namespaced identifier for this object.getName()
Deprecated.Magic valueGet the translation key, suitable for use in a translation component.short
Deprecated.Magic valueboolean
isAlive()
boolean
isEnabledByFeature
(World world) Gets if this EntityType is enabled by feature in a world.boolean
Some entities cannot be spawned usingRegionAccessor.spawnEntity(Location, EntityType)
orRegionAccessor.spawn(Location, Class)
, usually because they require additional information in order to spawn.static EntityType
Returns the enum constant of this type with the specified name.static EntityType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DROPPED_ITEM
An item resting on the ground.Spawn with
World.dropItem(Location, ItemStack)
orWorld.dropItemNaturally(Location, ItemStack)
-
EXPERIENCE_ORB
An experience orb. -
AREA_EFFECT_CLOUD
- See Also:
-
ELDER_GUARDIAN
- See Also:
-
WITHER_SKELETON
- See Also:
-
STRAY
- See Also:
-
EGG
A flying chicken egg. -
LEASH_HITCH
A leash attached to a fencepost. -
PAINTING
A painting on a wall. -
ARROW
An arrow projectile; may get stuck in the ground. -
SNOWBALL
A flying snowball. -
FIREBALL
A flying large fireball, as thrown by a Ghast for example. -
SMALL_FIREBALL
A flying small fireball, such as thrown by a Blaze or player. -
ENDER_PEARL
A flying ender pearl. -
ENDER_SIGNAL
An ender eye signal. -
SPLASH_POTION
A flying splash potion. -
THROWN_EXP_BOTTLE
A flying experience bottle. -
ITEM_FRAME
An item frame on a wall. -
WITHER_SKULL
A flying wither skull projectile. -
PRIMED_TNT
Primed TNT that is about to explode. -
FALLING_BLOCK
A block that is going to or is about to fall. -
FIREWORK
Internal representation of a Firework once it has been launched. -
HUSK
- See Also:
-
SPECTRAL_ARROW
LikeARROW
but causes thePotionEffectType.GLOWING
effect on all team members. -
SHULKER_BULLET
Bullet fired bySHULKER
. -
DRAGON_FIREBALL
LikeFIREBALL
but with added effects. -
ZOMBIE_VILLAGER
- See Also:
-
SKELETON_HORSE
- See Also:
-
ZOMBIE_HORSE
- See Also:
-
ARMOR_STAND
Mechanical entity with an inventory for placing weapons / armor into. -
DONKEY
- See Also:
-
MULE
- See Also:
-
EVOKER_FANGS
- See Also:
-
EVOKER
- See Also:
-
VEX
- See Also:
-
VINDICATOR
- See Also:
-
ILLUSIONER
- See Also:
-
MINECART_COMMAND
- See Also:
-
BOAT
A placed boat. -
MINECART
- See Also:
-
MINECART_CHEST
- See Also:
-
MINECART_FURNACE
- See Also:
-
MINECART_TNT
- See Also:
-
MINECART_HOPPER
- See Also:
-
MINECART_MOB_SPAWNER
- See Also:
-
CREEPER
-
SKELETON
-
SPIDER
-
GIANT
-
ZOMBIE
-
SLIME
-
GHAST
-
ZOMBIFIED_PIGLIN
-
ENDERMAN
-
CAVE_SPIDER
-
SILVERFISH
-
BLAZE
-
MAGMA_CUBE
-
ENDER_DRAGON
-
WITHER
-
BAT
-
WITCH
-
ENDERMITE
-
GUARDIAN
-
SHULKER
-
PIG
-
SHEEP
-
COW
-
CHICKEN
-
SQUID
-
WOLF
-
MUSHROOM_COW
-
SNOWMAN
-
OCELOT
-
IRON_GOLEM
-
HORSE
-
RABBIT
-
POLAR_BEAR
-
LLAMA
-
LLAMA_SPIT
-
PARROT
-
VILLAGER
-
ENDER_CRYSTAL
-
TURTLE
-
PHANTOM
-
TRIDENT
-
COD
-
SALMON
-
PUFFERFISH
-
TROPICAL_FISH
-
DROWNED
-
DOLPHIN
-
CAT
-
PANDA
-
PILLAGER
-
RAVAGER
-
TRADER_LLAMA
-
WANDERING_TRADER
-
FOX
-
BEE
-
HOGLIN
-
PIGLIN
-
STRIDER
-
ZOGLIN
-
PIGLIN_BRUTE
-
AXOLOTL
-
GLOW_ITEM_FRAME
-
GLOW_SQUID
-
GOAT
-
MARKER
-
ALLAY
-
CHEST_BOAT
-
FROG
-
TADPOLE
-
WARDEN
-
CAMEL
-
BLOCK_DISPLAY
-
INTERACTION
-
ITEM_DISPLAY
-
SNIFFER
-
TEXT_DISPLAY
-
FISHING_HOOK
A fishing line and bobber. -
LIGHTNING
A bolt of lightning.Spawn with
World.strikeLightning(Location)
. -
PLAYER
-
UNKNOWN
An unknown entity without an Entity Class
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
Deprecated.Magic valueGets the entity type name.- Returns:
- the entity type's name
-
getKey
Description copied from interface:Keyed
Return the namespaced identifier for this object. -
getEntityClass
-
getTypeId
Deprecated.Magic valueGets the entity type id.- Returns:
- the raw type id
-
fromName
@Deprecated @Contract("null -> null") @Nullable public static EntityType fromName(@Nullable String name) Deprecated.Magic valueGets an entity type from its name.- Parameters:
name
- the entity type's name- Returns:
- the matching entity type or null
-
fromId
Deprecated.Magic valueGets an entity from its id.- Parameters:
id
- the raw type id- Returns:
- the matching entity type or null
-
isSpawnable
public boolean isSpawnable()Some entities cannot be spawned usingRegionAccessor.spawnEntity(Location, EntityType)
orRegionAccessor.spawn(Location, Class)
, usually because they require additional information in order to spawn.- Returns:
- False if the entity type cannot be spawned
-
isAlive
public boolean isAlive() -
getTranslationKey
Description copied from interface:Translatable
Get the translation key, suitable for use in a translation component.- Specified by:
getTranslationKey
in interfaceTranslatable
- Returns:
- the translation key
-
isEnabledByFeature
Gets if this EntityType is enabled by feature in a world.- Parameters:
world
- the world to check- Returns:
- true if this EntityType can be used to spawn an Entity for this World.
-