Uses of Class
org.bukkit.inventory.EquipmentSlot
Package | Description |
---|---|
org.bukkit.attribute |
Classes relevant to attributes.
|
org.bukkit.event.block | |
org.bukkit.event.player | |
org.bukkit.inventory |
Classes involved in manipulating player inventories and item interactions.
|
org.bukkit.inventory.meta |
The interfaces used when manipulating extra data can can be stored inside
item stacks . |
-
Uses of EquipmentSlot in org.bukkit.attribute
Methods in org.bukkit.attribute that return EquipmentSlot Modifier and Type Method Description EquipmentSlot
AttributeModifier. getSlot()
Get theEquipmentSlot
this AttributeModifier is active on, or null if this modifier is applicable for any slot.Constructors in org.bukkit.attribute with parameters of type EquipmentSlot Constructor Description AttributeModifier(UUID uuid, String name, double amount, AttributeModifier.Operation operation, EquipmentSlot slot)
-
Uses of EquipmentSlot in org.bukkit.event.block
Fields in org.bukkit.event.block declared as EquipmentSlot Modifier and Type Field Description protected EquipmentSlot
BlockPlaceEvent. hand
Methods in org.bukkit.event.block that return EquipmentSlot Modifier and Type Method Description EquipmentSlot
BlockPlaceEvent. getHand()
Gets the hand which placed the blockConstructors in org.bukkit.event.block with parameters of type EquipmentSlot Constructor Description BlockPlaceEvent(Block placedBlock, BlockState replacedBlockState, Block placedAgainst, ItemStack itemInHand, Player thePlayer, boolean canBuild, EquipmentSlot hand)
-
Uses of EquipmentSlot in org.bukkit.event.player
Methods in org.bukkit.event.player that return EquipmentSlot Modifier and Type Method Description EquipmentSlot
PlayerInteractEntityEvent. getHand()
The hand used to perform this interaction.EquipmentSlot
PlayerInteractEvent. getHand()
The hand used to perform this interaction.EquipmentSlot
PlayerShearEntityEvent. getHand()
Gets the hand used to shear the entity.EquipmentSlot
PlayerArmorStandManipulateEvent. getSlot()
Returns the raw item slot of the armor stand in this event.Constructors in org.bukkit.event.player with parameters of type EquipmentSlot Constructor Description PlayerArmorStandManipulateEvent(Player who, ArmorStand clickedEntity, ItemStack playerItem, ItemStack armorStandItem, EquipmentSlot slot)
PlayerInteractAtEntityEvent(Player who, Entity clickedEntity, Vector position, EquipmentSlot hand)
PlayerInteractEntityEvent(Player who, Entity clickedEntity, EquipmentSlot hand)
PlayerInteractEvent(Player who, Action action, ItemStack item, Block clickedBlock, BlockFace clickedFace, EquipmentSlot hand)
PlayerShearEntityEvent(Player who, Entity what, ItemStack item, EquipmentSlot hand)
-
Uses of EquipmentSlot in org.bukkit.inventory
Methods in org.bukkit.inventory that return EquipmentSlot Modifier and Type Method Description static EquipmentSlot
EquipmentSlot. valueOf(String name)
Returns the enum constant of this type with the specified name.static EquipmentSlot[]
EquipmentSlot. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.bukkit.inventory with parameters of type EquipmentSlot Modifier and Type Method Description ItemStack
EntityEquipment. getItem(EquipmentSlot slot)
Gets the ItemStack at the given equipment slot in the inventory.ItemStack
PlayerInventory. getItem(EquipmentSlot slot)
Gets the ItemStack at the given equipment slot in the inventory.void
EntityEquipment. setItem(EquipmentSlot slot, ItemStack item)
Stores the ItemStack at the given equipment slot in the inventory.void
PlayerInventory. setItem(EquipmentSlot slot, ItemStack item)
Stores the ItemStack at the given equipment slot in the inventory. -
Uses of EquipmentSlot in org.bukkit.inventory.meta
Methods in org.bukkit.inventory.meta with parameters of type EquipmentSlot Modifier and Type Method Description Multimap<Attribute,AttributeModifier>
ItemMeta. getAttributeModifiers(EquipmentSlot slot)
Return an immutable copy of allAttribute
s and theirAttributeModifier
s for a givenEquipmentSlot
.
AnyAttributeModifier
that does have have a givenEquipmentSlot
will be returned.boolean
ItemMeta. removeAttributeModifier(EquipmentSlot slot)
Remove allAttribute
s andAttributeModifier
s for a givenEquipmentSlot
.
If the givenEquipmentSlot
is null, this will remove allAttributeModifier
s that do not have an EquipmentSlot set.