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.floatDeprecated, for removal: This API element is subject to removal in a future version.floatgetSpeed(RegistryKey<Block> block) Returns this tool's mining speed for the given block key.final inthashCode()Returns a hash code value for this object.booleanisCorrectForDrops(Block block) Deprecated, for removal: This API element is subject to removal in a future version.booleanisCorrectForDrops(RegistryKey<Block> block) Returns whether this tool is correct for drops from the given block key.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
Deprecated, for removal: This API element is subject to removal in a future version.Returns whether this tool is correct for drops from the given block.- Parameters:
block- the block to test- Returns:
- whether the first matching rule marks this tool as correct for drops
-
isCorrectForDrops
Returns whether this tool is correct for drops from the given block key.- Parameters:
block- the block key to test- Returns:
- whether the first matching rule marks this tool as correct for drops
-
getSpeed
Deprecated, for removal: This API element is subject to removal in a future version.Returns this tool's mining speed for the given block.- Parameters:
block- the block to test- Returns:
- the first matching rule's speed, or
defaultMiningSpeed()when none match
-
getSpeed
Returns this tool's mining speed for the given block key.- Parameters:
block- the block key to test- Returns:
- the first matching rule's speed, or
defaultMiningSpeed()when none match
-
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
-
getSpeed(RegistryKey)