Record Class AttributeModifiers1_20_5.ModifierData
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.item.data.AttributeModifiers1_20_5.ModifierData
- Enclosing class:
- AttributeModifiers1_20_5
-
Field Summary
-
Constructor Summary
ConstructorDescriptionModifierData
(UUID uuid, String name, double amount, int operation) Creates an instance of aModifierData
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.final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.int
Returns the value of theoperation
record component.final String
toString()
Returns a string representation of this record class.uuid()
Returns the value of theuuid
record component.
-
Field Details
-
TYPE
-
-
Constructor Details
-
ModifierData
Creates an instance of aModifierData
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 component
-
-
Method Details
-
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
public int operation()Returns the value of theoperation
record component.- Returns:
- the value of the
operation
record component
-