Package net.minecraft.predicate.item
Record Class EnchantmentPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.item.EnchantmentPredicate
- Record Components:
- enchantments-
- levels-
public record EnchantmentPredicate(Optional<RegistryEntryList<Enchantment>> enchantments, NumberRange.IntRange levels)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/predicate/item/EnchantmentPredicate- intermediary - net/minecraft/class_2035- official - bs- named - enchantments- intermediary - comp_2665- official - b- named - levels- intermediary - comp_1749- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EnchantmentPredicate> private final Optional<RegistryEntryList<Enchantment>> The field for theenchantmentsrecord component.private final NumberRange.IntRangeThe field for thelevelsrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionEnchantmentPredicate(Optional<RegistryEntryList<Enchantment>> optional, NumberRange.IntRange intRange) EnchantmentPredicate(RegistryEntry<Enchantment> enchantment, NumberRange.IntRange levels) EnchantmentPredicate(RegistryEntryList<Enchantment> enchantments, NumberRange.IntRange levels) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theenchantmentsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.levels()Returns the value of thelevelsrecord component.booleantest(ItemEnchantmentsComponent enchantmentsComponent) private booleantestLevel(ItemEnchantmentsComponent enchantmentsComponent, RegistryEntry<Enchantment> enchantment) final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
enchantmentsThe field for theenchantmentsrecord component.
- 
levelsThe field for thelevelsrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/predicate/item/EnchantmentPredicate;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_45741- Lnet/minecraft/class_2035;field_45741:Lcom/mojang/serialization/Codec;- official - a- Lbs;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
EnchantmentPredicate- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/predicate/item/EnchantmentPredicate;<init>(Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/predicate/NumberRange$IntRange;)V- intermediary - <init>- Lnet/minecraft/class_2035;<init>(Lnet/minecraft/class_6880;Lnet/minecraft/class_2096$class_2100;)V- official - <init>- Lbs;<init>(Ljr;Ldk$d;)V
 
- 
EnchantmentPredicatepublic EnchantmentPredicate(RegistryEntryList<Enchantment> enchantments, NumberRange.IntRange levels) - Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/predicate/item/EnchantmentPredicate;<init>(Lnet/minecraft/registry/entry/RegistryEntryList;Lnet/minecraft/predicate/NumberRange$IntRange;)V- intermediary - <init>- Lnet/minecraft/class_2035;<init>(Lnet/minecraft/class_6885;Lnet/minecraft/class_2096$class_2100;)V- official - <init>- Lbs;<init>(Ljv;Ldk$d;)V
 
- 
EnchantmentPredicatepublic EnchantmentPredicate(Optional<RegistryEntryList<Enchantment>> optional, NumberRange.IntRange intRange) 
 
- 
- 
Method Details- 
test- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/item/EnchantmentPredicate;test(Lnet/minecraft/component/type/ItemEnchantmentsComponent;)Z- intermediary - method_8880- Lnet/minecraft/class_2035;method_8880(Lnet/minecraft/class_9304;)Z- official - a- Lbs;a(Lddg;)Z
 
- 
testLevelprivate boolean testLevel(ItemEnchantmentsComponent enchantmentsComponent, RegistryEntry<Enchantment> enchantment) - Mappings:
- Namespace - Name - Mixin selector - named - testLevel- Lnet/minecraft/predicate/item/EnchantmentPredicate;testLevel(Lnet/minecraft/component/type/ItemEnchantmentsComponent;Lnet/minecraft/registry/entry/RegistryEntry;)Z- intermediary - method_59916- Lnet/minecraft/class_2035;method_59916(Lnet/minecraft/class_9304;Lnet/minecraft/class_6880;)Z- official - a- Lbs;a(Lddg;Ljr;)Z
 
- 
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).
- 
enchantmentsReturns the value of theenchantmentsrecord component.- Returns:
- the value of the enchantmentsrecord component
 
- 
levelsReturns the value of thelevelsrecord component.- Returns:
- the value of the levelsrecord component
 
 
-