Uses of Class
org.bukkit.attribute.AttributeModifier
Packages that use AttributeModifier
Package
Description
The root package of the Bukkit API, contains generalized API classes.
Classes relevant to attributes.
The interfaces used when manipulating extra data can can be stored inside
item stacks
.-
Uses of AttributeModifier in org.bukkit
Methods in org.bukkit that return types with arguments of type AttributeModifierModifier and TypeMethodDescriptionMaterial.getItemAttributes(@NotNull EquipmentSlot equipmentSlot)
Returns an immutable multimap of attributes for the slot.UnsafeValues.getItemAttributes(@NotNull Material material, EquipmentSlot equipmentSlot)
Deprecated.Returns an immutable multimap of attributes for the material and slot. -
Uses of AttributeModifier in org.bukkit.attribute
Methods in org.bukkit.attribute that return AttributeModifierModifier and TypeMethodDescriptionstatic @NotNull AttributeModifier
AttributeModifier.deserialize(@NotNull Map<String,Object> args)
Methods in org.bukkit.attribute that return types with arguments of type AttributeModifierModifier and TypeMethodDescriptionAttributeInstance.getModifiers()
Get all modifiers present on this instance.Methods in org.bukkit.attribute with parameters of type AttributeModifierModifier and TypeMethodDescriptionvoid
AttributeInstance.addModifier(@NotNull AttributeModifier modifier)
Add a modifier to this instance.void
AttributeInstance.removeModifier(@NotNull AttributeModifier modifier)
Remove a modifier from this instance. -
Uses of AttributeModifier in org.bukkit.inventory.meta
Methods in org.bukkit.inventory.meta that return types with arguments of type AttributeModifierModifier and TypeMethodDescriptionItemMeta.getAttributeModifiers()
Return an immutable copy of all Attributes and their modifiers in this ItemMeta.
Returns null if none exist.ItemMeta.getAttributeModifiers(@NotNull Attribute attribute)
Return an immutable copy of allAttributeModifier
s for a givenAttribute
ItemMeta.getAttributeModifiers(@NotNull 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.Methods in org.bukkit.inventory.meta with parameters of type AttributeModifierModifier and TypeMethodDescriptionboolean
ItemMeta.addAttributeModifier(@NotNull Attribute attribute, @NotNull AttributeModifier modifier)
Add an Attribute and it's Modifier.boolean
ItemMeta.removeAttributeModifier(@NotNull Attribute attribute, @NotNull AttributeModifier modifier)
Remove a specificAttribute
andAttributeModifier
.Method parameters in org.bukkit.inventory.meta with type arguments of type AttributeModifierModifier and TypeMethodDescriptionvoid
ItemMeta.setAttributeModifiers(@Nullable Multimap<Attribute,AttributeModifier> attributeModifiers)
Set allAttribute
s and theirAttributeModifier
s.