Record Class Tool.Rule
java.lang.Object
java.lang.Record
net.minestom.server.item.component.Tool.Rule
- Enclosing class:
Tool
public static record Tool.Rule(@NotNull RegistryTag<Block> blocks, @Nullable Float speed, @Nullable Boolean correctForDrops)
extends Record
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionRule
(@NotNull RegistryTag<Block> blocks, @Nullable Float speed, @Nullable Boolean correctForDrops) Creates an instance of aRule
record class. -
Method Summary
Modifier and TypeMethodDescription@NotNull RegistryTag
<Block> blocks()
Returns the value of theblocks
record component.@Nullable Boolean
Returns the value of thecorrectForDrops
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@Nullable Float
speed()
Returns the value of thespeed
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
NETWORK_TYPE
-
CODEC
-
-
Constructor Details
-
Rule
public Rule(@NotNull @NotNull RegistryTag<Block> blocks, @Nullable @Nullable Float speed, @Nullable @Nullable Boolean correctForDrops) Creates an instance of aRule
record class.- Parameters:
blocks
- the value for theblocks
record componentspeed
- the value for thespeed
record componentcorrectForDrops
- the value for thecorrectForDrops
record component
-
-
Method Details
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
blocks
Returns the value of theblocks
record component.- Returns:
- the value of the
blocks
record component
-
speed
Returns the value of thespeed
record component.- Returns:
- the value of the
speed
record component
-
correctForDrops
Returns the value of thecorrectForDrops
record component.- Returns:
- the value of the
correctForDrops
record component
-