Record Class AttributeModifiers1_20_5
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.item.data.AttributeModifiers1_20_5
- All Implemented Interfaces:
Copyable,Rewritable
public record AttributeModifiers1_20_5(AttributeModifiers1_20_5.AttributeModifier[] modifiers, boolean showInTooltip)
extends Record
implements Copyable, Rewritable
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordstatic final record -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionAttributeModifiers1_20_5(AttributeModifiers1_20_5.AttributeModifier[] modifiers, boolean showInTooltip) Creates an instance of aAttributeModifiers1_20_5record class. -
Method Summary
Modifier and TypeMethodDescriptioncopy()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of themodifiersrecord component.rewrite(UserConnection connection, Protocol<?, ?, ?, ?> protocol, boolean clientbound) Rewrites the object to a different version, may return self or a new object.booleanReturns the value of theshowInTooltiprecord component.final StringtoString()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_5record class.- Parameters:
modifiers- the value for themodifiersrecord componentshowInTooltip- the value for theshowInTooltiprecord component
-
-
Method Details
-
copy
-
rewrite
public AttributeModifiers1_20_5 rewrite(UserConnection connection, Protocol<?, ?, ?, ?> protocol, boolean clientbound) Description copied from interface:RewritableRewrites the object to a different version, may return self or a new object.- Specified by:
rewritein interfaceRewritable- Parameters:
connection- user connectionprotocol- protocolclientbound- whether it should be rewritten client- or serverbound- Returns:
- rewritten object, may be (modified or unmodified) self or a new object
-
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 themodifiersrecord component.- Returns:
- the value of the
modifiersrecord component
-
showInTooltip
public boolean showInTooltip()Returns the value of theshowInTooltiprecord component.- Returns:
- the value of the
showInTooltiprecord component
-