Record Class Tool
java.lang.Object
java.lang.Record
net.minecraft.world.item.component.Tool
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<Tool> private final intThe field for thedamagePerBlockrecord component.private final floatThe field for thedefaultMiningSpeedrecord component.The field for therulesrecord component.static final StreamCodec<RegistryFriendlyByteBuf, Tool> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of thedamagePerBlockrecord component.floatReturns the value of thedefaultMiningSpeedrecord component.final booleanIndicates whether some other object is "equal to" this one.floatgetMiningSpeed(BlockState p_330264_) final inthashCode()Returns a hash code value for this object.booleanisCorrectForDrops(BlockState p_332652_) rules()Returns the value of therulesrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
rules
The field for therulesrecord component. -
defaultMiningSpeed
private final float defaultMiningSpeedThe field for thedefaultMiningSpeedrecord component. -
damagePerBlock
private final int damagePerBlockThe field for thedamagePerBlockrecord component. -
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
Tool
Creates an instance of aToolrecord class.- Parameters:
rules- the value for therulesrecord componentdefaultMiningSpeed- the value for thedefaultMiningSpeedrecord componentdamagePerBlock- the value for thedamagePerBlockrecord component
-
-
Method Details
-
getMiningSpeed
-
isCorrectForDrops
-
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 '=='. -
rules
Returns the value of therulesrecord component.- Returns:
- the value of the
rulesrecord component
-
defaultMiningSpeed
public float defaultMiningSpeed()Returns the value of thedefaultMiningSpeedrecord component.- Returns:
- the value of the
defaultMiningSpeedrecord component
-
damagePerBlock
public int damagePerBlock()Returns the value of thedamagePerBlockrecord component.- Returns:
- the value of the
damagePerBlockrecord component
-