Package net.minecraft.world.effect
Record Class MobEffect.AttributeTemplate
java.lang.Object
java.lang.Record
net.minecraft.world.effect.MobEffect.AttributeTemplate
- Enclosing class:
MobEffect
static record MobEffect.AttributeTemplate(ResourceLocation id, double amount, AttributeModifier.Operation operation)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final double
The field for theamount
record component.private final ResourceLocation
The field for theid
record component.private final AttributeModifier.Operation
The field for theoperation
record component. -
Constructor Summary
ConstructorDescriptionAttributeTemplate
(ResourceLocation id, double amount, AttributeModifier.Operation operation) Creates an instance of aAttributeTemplate
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
amount()
Returns the value of theamount
record component.create
(int p_332230_) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.Returns the value of theoperation
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
id
The field for theid
record component. -
amount
private final double amountThe field for theamount
record component. -
operation
The field for theoperation
record component.
-
-
Constructor Details
-
AttributeTemplate
AttributeTemplate(ResourceLocation id, double amount, AttributeModifier.Operation operation) Creates an instance of aAttributeTemplate
record class.- Parameters:
id
- the value for theid
record componentamount
- the value for theamount
record componentoperation
- the value for theoperation
record component
-
-
Method Details
-
create
-
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 '=='. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
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
-