Record Class SingleEnchantmentProvider
java.lang.Object
java.lang.Record
net.minecraft.enchantment.provider.SingleEnchantmentProvider
- Record Components:
enchantment
-level
-
- All Implemented Interfaces:
EnchantmentProvider
public record SingleEnchantmentProvider(RegistryEntry<Enchantment> enchantment, IntProvider level)
extends Record
implements EnchantmentProvider
- Mappings:
Namespace Name named net/minecraft/enchantment/provider/SingleEnchantmentProvider
intermediary net/minecraft/class_9745
official dax
named enchantment
intermediary comp_2769
official c
named level
intermediary comp_2770
official d
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<SingleEnchantmentProvider> private final RegistryEntry
<Enchantment> The field for theenchantment
record component.private final IntProvider
The field for thelevel
record component. -
Constructor Summary
ConstructorDescriptionSingleEnchantmentProvider
(RegistryEntry<Enchantment> registryEntry, IntProvider intProvider) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theenchantment
record component.final boolean
Indicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec
<SingleEnchantmentProvider> getCodec()
final int
hashCode()
Returns a hash code value for this object.level()
Returns the value of thelevel
record component.void
provideEnchantments
(ItemStack stack, ItemEnchantmentsComponent.Builder componentBuilder, Random random, LocalDifficulty localDifficulty) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
enchantment
The field for theenchantment
record component. -
level
The field for thelevel
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/enchantment/provider/SingleEnchantmentProvider;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_51734
Lnet/minecraft/class_9745;field_51734:Lcom/mojang/serialization/MapCodec;
official b
Ldax;b:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
SingleEnchantmentProvider
-
-
Method Details
-
provideEnchantments
public void provideEnchantments(ItemStack stack, ItemEnchantmentsComponent.Builder componentBuilder, Random random, LocalDifficulty localDifficulty) - Specified by:
provideEnchantments
in interfaceEnchantmentProvider
- Mappings:
Namespace Name Mixin selector named provideEnchantments
Lnet/minecraft/enchantment/provider/EnchantmentProvider;provideEnchantments(Lnet/minecraft/item/ItemStack;Lnet/minecraft/component/type/ItemEnchantmentsComponent$Builder;Lnet/minecraft/util/math/random/Random;Lnet/minecraft/world/LocalDifficulty;)V
intermediary method_60266
Lnet/minecraft/class_9741;method_60266(Lnet/minecraft/class_1799;Lnet/minecraft/class_9304$class_9305;Lnet/minecraft/class_5819;Lnet/minecraft/class_1266;)V
official a
Ldat;a(Lcud;Lczs$a;Layo;Lbqf;)V
-
getCodec
- Specified by:
getCodec
in interfaceEnchantmentProvider
- Mappings:
Namespace Name Mixin selector named getCodec
Lnet/minecraft/enchantment/provider/EnchantmentProvider;getCodec()Lcom/mojang/serialization/MapCodec;
intermediary method_60265
Lnet/minecraft/class_9741;method_60265()Lcom/mojang/serialization/MapCodec;
official a
Ldat;a()Lcom/mojang/serialization/MapCodec;
-
toString
Returns 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. -
hashCode
public 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. -
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)
. -
enchantment
Returns the value of theenchantment
record component.- Returns:
- the value of the
enchantment
record component
-
level
Returns the value of thelevel
record component.- Returns:
- the value of the
level
record component
-