Record Class Tool
java.lang.Object
java.lang.Record
net.minecraft.world.item.component.Tool
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanThe field for thecanDestroyBlocksInCreativerecord component.static 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 TypeMethodDescriptionbooleanReturns the value of thecanDestroyBlocksInCreativerecord component.intReturns the value of thedamagePerBlockrecord component.floatReturns the value of thedefaultMiningSpeedrecord component.final booleanIndicates whether some other object is "equal to" this one.floatgetMiningSpeed(BlockState state) final inthashCode()Returns a hash code value for this object.booleanisCorrectForDrops(BlockState state) rules()Returns the value of therulesrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
rules
-
defaultMiningSpeed
private final float defaultMiningSpeedThe field for thedefaultMiningSpeedrecord component. -
damagePerBlock
private final int damagePerBlockThe field for thedamagePerBlockrecord component. -
canDestroyBlocksInCreative
private final boolean canDestroyBlocksInCreativeThe field for thecanDestroyBlocksInCreativerecord component. -
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
Tool
public Tool(List<Tool.Rule> rules, float defaultMiningSpeed, int damagePerBlock, boolean canDestroyBlocksInCreative) Creates an instance of aToolrecord class.- Parameters:
rules- the value for therulesrecord componentdefaultMiningSpeed- the value for thedefaultMiningSpeedrecord componentdamagePerBlock- the value for thedamagePerBlockrecord componentcanDestroyBlocksInCreative- the value for thecanDestroyBlocksInCreativerecord component
-
-
Method Details
-
getMiningSpeed
-
isCorrectForDrops
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
rules
-
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
-
canDestroyBlocksInCreative
public boolean canDestroyBlocksInCreative()Returns the value of thecanDestroyBlocksInCreativerecord component.- Returns:
- the value of the
canDestroyBlocksInCreativerecord component
-