Record Class AttributeModifierWrapper
java.lang.Object
java.lang.Record
de.eldoria.jacksonbukkit.entities.AttributeModifierWrapper
public record AttributeModifierWrapper(UUID uuid, String name, double amount, AttributeModifier.Operation operation, EquipmentSlot equipmentSlot)
extends Record
Class for wrapping an
AttributeModifier
.-
Constructor Summary
ConstructorDescriptionAttributeModifierWrapper
(UUID uuid, String name, double amount, AttributeModifier.Operation operation, EquipmentSlot equipmentSlot) Creates an instance of aAttributeModifierWrapper
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
amount()
Returns the value of theamount
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of theequipmentSlot
record component.final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.static AttributeModifierWrapper
of
(AttributeModifier attributeModifier) Create a newAttributeModifierWrapper
based on anAttributeModifier
.Returns the value of theoperation
record component.Constructs a newAttributeModifier
based on wrapper values.final String
toString()
Returns a string representation of this record class.uuid()
Returns the value of theuuid
record component.
-
Constructor Details
-
AttributeModifierWrapper
public AttributeModifierWrapper(UUID uuid, String name, double amount, AttributeModifier.Operation operation, EquipmentSlot equipmentSlot) Creates an instance of aAttributeModifierWrapper
record class.- Parameters:
uuid
- the value for theuuid
record componentname
- the value for thename
record componentamount
- the value for theamount
record componentoperation
- the value for theoperation
record componentequipmentSlot
- the value for theequipmentSlot
record component
-
-
Method Details
-
of
Create a newAttributeModifierWrapper
based on anAttributeModifier
.- Parameters:
attributeModifier
- attribute modifier instance- Returns:
- new
AttributeModifierWrapper
instance
-
toBukkitAttributeModifier
Constructs a newAttributeModifier
based on wrapper values.- Returns:
- new
AttributeModifier
instance
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
uuid
Returns the value of theuuid
record component.- Returns:
- the value of the
uuid
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
amount
public double amount()Returns the value of theamount
record component.- Returns:
- the value of the
amount
record component
-
operation
Returns the value of theoperation
record component.- Returns:
- the value of the
operation
record component
-
equipmentSlot
Returns the value of theequipmentSlot
record component.- Returns:
- the value of the
equipmentSlot
record component
-