Record Class AttributeList.Modifier
java.lang.Object
java.lang.Record
net.minestom.server.item.component.AttributeList.Modifier
- Enclosing class:
AttributeList
public static record AttributeList.Modifier(@NotNull Attribute attribute, @NotNull AttributeModifier modifier, @NotNull EquipmentSlotGroup slot)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Codec
<AttributeList.Modifier> static final NetworkBuffer.Type
<AttributeList.Modifier> -
Constructor Summary
ConstructorsConstructorDescriptionModifier
(@NotNull Attribute attribute, @NotNull AttributeModifier modifier, @NotNull EquipmentSlotGroup slot) Creates an instance of aModifier
record class. -
Method Summary
Modifier and TypeMethodDescription@NotNull Attribute
Returns the value of theattribute
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@NotNull AttributeModifier
modifier()
Returns the value of themodifier
record component.@NotNull EquipmentSlotGroup
slot()
Returns the value of theslot
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
NETWORK_TYPE
-
CODEC
-
-
Constructor Details
-
Modifier
public Modifier(@NotNull @NotNull Attribute attribute, @NotNull @NotNull AttributeModifier modifier, @NotNull @NotNull EquipmentSlotGroup slot) Creates an instance of aModifier
record class.- Parameters:
attribute
- the value for theattribute
record componentmodifier
- the value for themodifier
record componentslot
- the value for theslot
record component
-
-
Method Details
-
toString
-
hashCode
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
attribute
Returns the value of theattribute
record component.- Returns:
- the value of the
attribute
record component
-
modifier
Returns the value of themodifier
record component.- Returns:
- the value of the
modifier
record component
-
slot
Returns the value of theslot
record component.- Returns:
- the value of the
slot
record component
-