Package net.minecraft.component.type
Record Class ToolComponent.Rule
java.lang.Object
java.lang.Record
net.minecraft.component.type.ToolComponent.Rule
- Record Components:
- blocks-
- speed-
- correctForDrops-
- Enclosing class:
- ToolComponent
public static record ToolComponent.Rule(RegistryEntryList<Block> blocks, Optional<Float> speed, Optional<Boolean> correctForDrops)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/component/type/ToolComponent$Rule- intermediary - net/minecraft/class_9424$class_9425- official - czs$a- named - blocks- intermediary - comp_2501- official - c- named - speed- intermediary - comp_2502- official - d- named - correctForDrops- intermediary - comp_2503- official - e
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final RegistryEntryList<Block> The field for theblocksrecord component.static final com.mojang.serialization.Codec<ToolComponent.Rule> The field for thecorrectForDropsrecord component.static final PacketCodec<RegistryByteBuf, ToolComponent.Rule> The field for thespeedrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionblocks()Returns the value of theblocksrecord component.Returns the value of thecorrectForDropsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static ToolComponent.Ruleof(RegistryEntryList<Block> blocks, float speed) static ToolComponent.RuleofAlwaysDropping(RegistryEntryList<Block> blocks, float speed) static ToolComponent.RuleofNeverDropping(RegistryEntryList<Block> blocks) speed()Returns the value of thespeedrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
blocksThe field for theblocksrecord component.
- 
speedThe field for thespeedrecord component.
- 
correctForDropsThe field for thecorrectForDropsrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/component/type/ToolComponent$Rule;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_50011- Lnet/minecraft/class_9424$class_9425;field_50011:Lcom/mojang/serialization/Codec;- official - a- Lczs$a;a:Lcom/mojang/serialization/Codec;
 
- 
PACKET_CODEC- Mappings:
- Namespace - Name - Mixin selector - named - PACKET_CODEC- Lnet/minecraft/component/type/ToolComponent$Rule;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;- intermediary - field_50012- Lnet/minecraft/class_9424$class_9425;field_50012:Lnet/minecraft/class_9139;- official - b- Lczs$a;b:Lyn;
 
 
- 
- 
Constructor Details- 
Rule
 
- 
- 
Method Details- 
ofAlwaysDropping- Mappings:
- Namespace - Name - Mixin selector - named - ofAlwaysDropping- Lnet/minecraft/component/type/ToolComponent$Rule;ofAlwaysDropping(Lnet/minecraft/registry/entry/RegistryEntryList;F)Lnet/minecraft/component/type/ToolComponent$Rule;- intermediary - method_58431- Lnet/minecraft/class_9424$class_9425;method_58431(Lnet/minecraft/class_6885;F)Lnet/minecraft/class_9424$class_9425;- official - a- Lczs$a;a(Ljv;F)Lczs$a;
 
- 
ofNeverDropping- Mappings:
- Namespace - Name - Mixin selector - named - ofNeverDropping- Lnet/minecraft/component/type/ToolComponent$Rule;ofNeverDropping(Lnet/minecraft/registry/entry/RegistryEntryList;)Lnet/minecraft/component/type/ToolComponent$Rule;- intermediary - method_58427- Lnet/minecraft/class_9424$class_9425;method_58427(Lnet/minecraft/class_6885;)Lnet/minecraft/class_9424$class_9425;- official - a- Lczs$a;a(Ljv;)Lczs$a;
 
- 
of- Mappings:
- Namespace - Name - Mixin selector - named - of- Lnet/minecraft/component/type/ToolComponent$Rule;of(Lnet/minecraft/registry/entry/RegistryEntryList;F)Lnet/minecraft/component/type/ToolComponent$Rule;- intermediary - method_58434- Lnet/minecraft/class_9424$class_9425;method_58434(Lnet/minecraft/class_6885;F)Lnet/minecraft/class_9424$class_9425;- official - b- Lczs$a;b(Ljv;F)Lczs$a;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
blocksReturns the value of theblocksrecord component.- Returns:
- the value of the blocksrecord component
 
- 
speedReturns the value of thespeedrecord component.- Returns:
- the value of the speedrecord component
 
- 
correctForDropsReturns the value of thecorrectForDropsrecord component.- Returns:
- the value of the correctForDropsrecord component
 
 
-