Package org.bukkit.entity
Enum Class EntityType
- All Implemented Interfaces:
FeatureDependant
,Serializable
,Comparable<EntityType>
,Constable
,Keyed
,Translatable
,Keyed
,Translatable
public enum EntityType
extends Enum<EntityType>
implements Keyed, Translatable, Translatable, FeatureDependant
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn unknown entity without an Entity Class -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable EntityType
fromId
(int id) Deprecated, for removal: This API element is subject to removal in a future version.Magic valuestatic @Nullable EntityType
Gets an entity type from its name.Gets the default attributes for the entity.getKey()
Return the namespaced identifier for this object.getName()
Deprecated.Magic valueDeprecated, for removal: This API element is subject to removal in a future version.short
Deprecated, for removal: This API element is subject to removal in a future version.Magic valueboolean
Checks if the entity has default attributes.boolean
isAlive()
boolean
isEnabledByFeature
(@NotNull World world) Deprecated, for removal: This API element is subject to removal in a future version.boolean
Some entities cannot be spawned usingRegionAccessor.spawnEntity(Location, EntityType)
orRegionAccessor.spawn(Location, Class)
, usually because they require additional information in order to spawn.Gets the translation key.static EntityType
Returns the enum constant of this class with the specified name.static EntityType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface io.papermc.paper.world.flag.FeatureDependant
requiredFeatures
-
Enum Constant Details
-
ACACIA_BOAT
-
ACACIA_CHEST_BOAT
-
ALLAY
-
AREA_EFFECT_CLOUD
-
ARMADILLO
-
ARMOR_STAND
-
ARROW
-
AXOLOTL
-
BAMBOO_CHEST_RAFT
-
BAMBOO_RAFT
-
BAT
-
BEE
-
BIRCH_BOAT
-
BIRCH_CHEST_BOAT
-
BLAZE
-
BLOCK_DISPLAY
-
BOGGED
-
BREEZE
-
BREEZE_WIND_CHARGE
-
CAMEL
-
CAT
-
CAVE_SPIDER
-
CHERRY_BOAT
-
CHERRY_CHEST_BOAT
-
CHEST_MINECART
-
CHICKEN
-
COD
-
COMMAND_BLOCK_MINECART
-
COW
-
CREAKING
-
CREEPER
-
DARK_OAK_BOAT
-
DARK_OAK_CHEST_BOAT
-
DOLPHIN
-
DONKEY
-
DRAGON_FIREBALL
-
DROWNED
-
EGG
-
ELDER_GUARDIAN
-
END_CRYSTAL
-
ENDER_DRAGON
-
ENDER_PEARL
-
ENDERMAN
-
ENDERMITE
-
EVOKER
-
EVOKER_FANGS
-
EXPERIENCE_BOTTLE
-
EXPERIENCE_ORB
-
EYE_OF_ENDER
-
FALLING_BLOCK
-
FIREBALL
-
FIREWORK_ROCKET
-
FISHING_BOBBER
-
FOX
-
FROG
-
FURNACE_MINECART
-
GHAST
-
GIANT
-
GLOW_ITEM_FRAME
-
GLOW_SQUID
-
GOAT
-
GUARDIAN
-
HOGLIN
-
HOPPER_MINECART
-
HORSE
-
HUSK
-
ILLUSIONER
-
INTERACTION
-
IRON_GOLEM
-
ITEM
-
ITEM_DISPLAY
-
ITEM_FRAME
-
JUNGLE_BOAT
-
JUNGLE_CHEST_BOAT
-
LEASH_KNOT
-
LIGHTNING_BOLT
-
LINGERING_POTION
-
LLAMA
-
LLAMA_SPIT
-
MAGMA_CUBE
-
MANGROVE_BOAT
-
MANGROVE_CHEST_BOAT
-
MARKER
-
MINECART
-
MOOSHROOM
-
MULE
-
OAK_BOAT
-
OAK_CHEST_BOAT
-
OCELOT
-
OMINOUS_ITEM_SPAWNER
-
PAINTING
-
PALE_OAK_BOAT
-
PALE_OAK_CHEST_BOAT
-
PANDA
-
PARROT
-
PHANTOM
-
PIG
-
PIGLIN
-
PIGLIN_BRUTE
-
PILLAGER
-
PLAYER
-
POLAR_BEAR
-
PUFFERFISH
-
RABBIT
-
RAVAGER
-
SALMON
-
SHEEP
-
SHULKER
-
SHULKER_BULLET
-
SILVERFISH
-
SKELETON
-
SKELETON_HORSE
-
SLIME
-
SMALL_FIREBALL
-
SNIFFER
-
SNOW_GOLEM
-
SNOWBALL
-
SPAWNER_MINECART
-
SPECTRAL_ARROW
-
SPIDER
-
SPLASH_POTION
-
SPRUCE_BOAT
-
SPRUCE_CHEST_BOAT
-
SQUID
-
STRAY
-
STRIDER
-
TADPOLE
-
TEXT_DISPLAY
-
TNT
-
TNT_MINECART
-
TRADER_LLAMA
-
TRIDENT
-
TROPICAL_FISH
-
TURTLE
-
VEX
-
VILLAGER
-
VINDICATOR
-
WANDERING_TRADER
-
WARDEN
-
WIND_CHARGE
-
WITCH
-
WITHER
-
WITHER_SKELETON
-
WITHER_SKULL
-
WOLF
-
ZOGLIN
-
ZOMBIE
-
ZOMBIE_HORSE
-
ZOMBIE_VILLAGER
-
ZOMBIFIED_PIGLIN
-
UNKNOWN
An unknown entity without an Entity Class
-
-
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
-
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, for removal: This API element is subject to removal in a future version.Magic valueGets the entity type id.- Returns:
- the raw type id
-
fromName
@Internal @Contract("null -> null") @Nullable public static @Nullable EntityType fromName(@Nullable @Nullable String name) Gets an entity type from its name.- Parameters:
name
- the entity type's name- Returns:
- the matching entity type or null
- API Note:
- Internal Use Only
-
fromId
@Deprecated(since="1.6.2", forRemoval=true) @Nullable public static @Nullable EntityType fromId(int id) Deprecated, for removal: This API element is subject to removal in a future version.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
Deprecated, for removal: This API element is subject to removal in a future version.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
-
translationKey
Description copied from interface:net.kyori.adventure.translation.Translatable
Gets the translation key.- Specified by:
translationKey
in interfaceTranslatable
- Returns:
- the translation key
- Throws:
IllegalArgumentException
- if the entity does not have a translation key (is probably a custom entity)
-
hasDefaultAttributes
public boolean hasDefaultAttributes()Checks if the entity has default attributes.- Returns:
- true if it has default attributes
-
getDefaultAttributes
Gets the default attributes for the entity.- Returns:
- an unmodifiable instance of Attributable for reading default attributes.
- Throws:
IllegalArgumentException
- if the entity does not exist of have default attributes (usehasDefaultAttributes()
first)
-
isEnabledByFeature
@Deprecated(forRemoval=true, since="1.20") public boolean isEnabledByFeature(@NotNull @NotNull World world) Deprecated, for removal: This API element is subject to removal in a future version.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.
-