Record Class Tool
java.lang.Object
java.lang.Record
net.minestom.server.item.component.Tool
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intstatic final floatstatic final NetworkBuffer.Type<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.floatfinal inthashCode()Returns a hash code value for this object.booleanisCorrectForDrops(Block block) rules()Returns the value of therulesrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
DEFAULT_MINING_SPEED
public static final float DEFAULT_MINING_SPEED- See Also:
-
DEFAULT_DAMAGE_PER_BLOCK
public static final int DEFAULT_DAMAGE_PER_BLOCK- See Also:
-
NETWORK_TYPE
-
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
-
isCorrectForDrops
-
getSpeed
-
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
-