Record Class ToolRule
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.item.data.ToolRule
- All Implemented Interfaces:
Rewritable
public record ToolRule(HolderSet blocks, @Nullable Float speed, @Nullable Boolean correctForDrops)
extends Record
implements Rewritable
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionblocks()Returns the value of theblocksrecord component.@Nullable BooleanReturns the value of thecorrectForDropsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.rewrite(UserConnection connection, Protocol<?, ?, ?, ?> protocol, boolean clientbound) Rewrites the object to a different version, may return self or a new object.@Nullable Floatspeed()Returns the value of thespeedrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
TYPE
-
ARRAY_TYPE
-
-
Constructor Details
-
ToolRule
Creates an instance of aToolRulerecord class.- Parameters:
blocks- the value for theblocksrecord componentspeed- the value for thespeedrecord componentcorrectForDrops- the value for thecorrectForDropsrecord component
-
-
Method Details
-
rewrite
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. All components in this record class are compared withObjects::equals(Object,Object). -
blocks
Returns the value of theblocksrecord component.- Returns:
- the value of the
blocksrecord component
-
speed
Returns the value of thespeedrecord component.- Returns:
- the value of the
speedrecord component
-
correctForDrops
Returns the value of thecorrectForDropsrecord component.- Returns:
- the value of the
correctForDropsrecord component
-