Record Class TooltipDisplay
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.item.data.TooltipDisplay
- All Implemented Interfaces:
Rewritable
public record TooltipDisplay(boolean hideTooltip, it.unimi.dsi.fastutil.ints.IntSortedSet hiddenComponents)
extends Record
implements Rewritable
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTooltipDisplay
(boolean hideTooltip, it.unimi.dsi.fastutil.ints.IntSortedSet hiddenComponents) Creates an instance of aTooltipDisplay
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.it.unimi.dsi.fastutil.ints.IntSortedSet
Returns the value of thehiddenComponents
record component.boolean
Returns the value of thehideTooltip
record component.rewrite
(UserConnection connection, Protocol<?, ?, ?, ?> protocol, boolean clientbound) Rewrites the object to a different version, may return self or a new object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
TYPE
-
-
Constructor Details
-
TooltipDisplay
public TooltipDisplay(boolean hideTooltip, it.unimi.dsi.fastutil.ints.IntSortedSet hiddenComponents) Creates an instance of aTooltipDisplay
record class.- Parameters:
hideTooltip
- the value for thehideTooltip
record componenthiddenComponents
- the value for thehiddenComponents
record component
-
-
Method Details
-
rewrite
public TooltipDisplay rewrite(UserConnection connection, Protocol<?, ?, ?, ?> protocol, boolean clientbound) Description copied from interface:Rewritable
Rewrites the object to a different version, may return self or a new object.- Specified by:
rewrite
in 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 '=='. -
hideTooltip
public boolean hideTooltip()Returns the value of thehideTooltip
record component.- Returns:
- the value of the
hideTooltip
record component
-