Record Class Tool
java.lang.Object
java.lang.Record
net.minecraft.world.item.component.Tool
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<Tool> private final int
The field for thedamagePerBlock
record component.private final float
The field for thedefaultMiningSpeed
record component.The field for therules
record component.static final StreamCodec
<RegistryFriendlyByteBuf, Tool> -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the value of thedamagePerBlock
record component.float
Returns the value of thedefaultMiningSpeed
record component.final boolean
Indicates whether some other object is "equal to" this one.float
getMiningSpeed
(BlockState p_330264_) final int
hashCode()
Returns a hash code value for this object.boolean
isCorrectForDrops
(BlockState p_332652_) rules()
Returns the value of therules
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
rules
The field for therules
record component. -
defaultMiningSpeed
private final float defaultMiningSpeedThe field for thedefaultMiningSpeed
record component. -
damagePerBlock
private final int damagePerBlockThe field for thedamagePerBlock
record component. -
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
Tool
Creates an instance of aTool
record class.- Parameters:
rules
- the value for therules
record componentdefaultMiningSpeed
- the value for thedefaultMiningSpeed
record componentdamagePerBlock
- the value for thedamagePerBlock
record 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 therules
record component.- Returns:
- the value of the
rules
record component
-
defaultMiningSpeed
public float defaultMiningSpeed()Returns the value of thedefaultMiningSpeed
record component.- Returns:
- the value of the
defaultMiningSpeed
record component
-
damagePerBlock
public int damagePerBlock()Returns the value of thedamagePerBlock
record component.- Returns:
- the value of the
damagePerBlock
record component
-