Record Class AttributeModifiers1_20_5
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.item.data.AttributeModifiers1_20_5
public record AttributeModifiers1_20_5(AttributeModifiers1_20_5.AttributeModifier[] modifiers, boolean showInTooltip)
extends Record
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final record
static final record
-
Field Summary
-
Constructor Summary
ConstructorDescriptionAttributeModifiers1_20_5
(AttributeModifiers1_20_5.AttributeModifier[] modifiers, boolean showInTooltip) Creates an instance of aAttributeModifiers1_20_5
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of themodifiers
record component.boolean
Returns the value of theshowInTooltip
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
TYPE
-
-
Constructor Details
-
AttributeModifiers1_20_5
public AttributeModifiers1_20_5(AttributeModifiers1_20_5.AttributeModifier[] modifiers, boolean showInTooltip) Creates an instance of aAttributeModifiers1_20_5
record class.- Parameters:
modifiers
- the value for themodifiers
record componentshowInTooltip
- the value for theshowInTooltip
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 '=='. -
modifiers
Returns the value of themodifiers
record component.- Returns:
- the value of the
modifiers
record component
-
showInTooltip
public boolean showInTooltip()Returns the value of theshowInTooltip
record component.- Returns:
- the value of the
showInTooltip
record component
-