Uses of Interface
org.bukkit.entity.Item
Packages that use Item
Package
Description
The root package of the Bukkit API, contains generalized API classes.
Interfaces for non-voxel objects that can exist in a
world
, including all players, monsters, projectiles, etc.-
Uses of Item in org.bukkit
Methods in org.bukkit that return ItemModifier and TypeMethodDescriptionDrops an item at the specifiedLocation
World.dropItem
(@NotNull Location location, @NotNull ItemStack item, @Nullable Consumer<Item> function) Drops an item at the specifiedLocation
Note that functions will run before the entity is spawnedWorld.dropItemNaturally
(@NotNull Location location, @NotNull ItemStack item) Drops an item at the specifiedLocation
with a random offsetWorld.dropItemNaturally
(@NotNull Location location, @NotNull ItemStack item, @Nullable Consumer<Item> function) Drops an item at the specifiedLocation
with a random offset Note that functions will run before the entity is spawnedMethod parameters in org.bukkit with type arguments of type ItemModifier and TypeMethodDescriptionWorld.dropItem
(@NotNull Location location, @NotNull ItemStack item, @Nullable Consumer<Item> function) Drops an item at the specifiedLocation
Note that functions will run before the entity is spawnedWorld.dropItemNaturally
(@NotNull Location location, @NotNull ItemStack item, @Nullable Consumer<Item> function) Drops an item at the specifiedLocation
with a random offset Note that functions will run before the entity is spawned -
Uses of Item in org.bukkit.entity
Methods in org.bukkit.entity with parameters of type ItemModifier and TypeMethodDescriptiondefault void
LivingEntity.playPickupItemAnimation
(@NotNull Item item) Plays pickup item animation towards this entity.void
LivingEntity.playPickupItemAnimation
(@NotNull Item item, int quantity) Plays pickup item animation towards this entity. -
Uses of Item in org.bukkit.event.block
Methods in org.bukkit.event.block that return types with arguments of type ItemModifier and TypeMethodDescriptionBlockDropItemEvent.getItems()
Gets list of the Item drops caused by the block break.Constructor parameters in org.bukkit.event.block with type arguments of type ItemModifierConstructorDescriptionBlockDropItemEvent
(@NotNull Block block, @NotNull BlockState blockState, @NotNull Player player, @NotNull List<Item> items) -
Uses of Item in org.bukkit.event.entity
Methods in org.bukkit.event.entity that return ItemModifier and TypeMethodDescriptionItemDespawnEvent.getEntity()
ItemMergeEvent.getEntity()
ItemSpawnEvent.getEntity()
EntityPickupItemEvent.getItem()
Gets the Item picked up by the entity.EntityDropItemEvent.getItemDrop()
Gets the Item created by the entityItemMergeEvent.getTarget()
Gets the Item entity the main Item is being merged into.Constructors in org.bukkit.event.entity with parameters of type ItemModifierConstructorDescriptionEntityDropItemEvent
(@NotNull Entity entity, @NotNull Item drop) EntityPickupItemEvent
(@NotNull LivingEntity entity, @NotNull Item item, int remaining) ItemDespawnEvent
(@NotNull Item despawnee, @NotNull Location loc) ItemMergeEvent
(@NotNull Item item, @NotNull Item target) ItemSpawnEvent
(@NotNull Item spawnee) ItemSpawnEvent
(@NotNull Item spawnee, Location loc) Deprecated. -
Uses of Item in org.bukkit.event.inventory
Methods in org.bukkit.event.inventory that return ItemModifier and TypeMethodDescriptionInventoryPickupItemEvent.getItem()
Gets the Item entity that was picked upConstructors in org.bukkit.event.inventory with parameters of type ItemModifierConstructorDescriptionInventoryPickupItemEvent
(@NotNull Inventory inventory, @NotNull Item item) -
Uses of Item in org.bukkit.event.player
Methods in org.bukkit.event.player that return ItemModifier and TypeMethodDescriptionPlayerAttemptPickupItemEvent.getItem()
Gets the Item attempted by the player.PlayerPickupItemEvent.getItem()
Deprecated.Gets the Item picked up by the player.PlayerDropItemEvent.getItemDrop()
Gets the ItemDrop created by the playerConstructors in org.bukkit.event.player with parameters of type ItemModifierConstructorDescriptionPlayerAttemptPickupItemEvent
(@NotNull Player player, @NotNull Item item) Deprecated.PlayerAttemptPickupItemEvent
(@NotNull Player player, @NotNull Item item, int remaining) PlayerDropItemEvent
(@NotNull Player player, @NotNull Item drop) PlayerPickupArrowEvent
(@NotNull Player player, @NotNull Item item, @NotNull AbstractArrow arrow) PlayerPickupItemEvent
(@NotNull Player player, @NotNull Item item, int remaining) Deprecated.