Package net.minecraft.predicate.item
Record Class EnchantmentPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.item.EnchantmentPredicate
- Record Components:
enchantment-levels-
public record EnchantmentPredicate(Optional<RegistryEntry<Enchantment>> enchantment, NumberRange.IntRange levels)
extends Record
- Mappings:
Namespace Name official bkintermediary net/minecraft/class_2035named net/minecraft/predicate/item/EnchantmentPredicateofficial bintermediary comp_1748named enchantmentofficial cintermediary comp_1749named levels
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EnchantmentPredicate>private final Optional<RegistryEntry<Enchantment>>The field for theenchantmentrecord component.private final NumberRange.IntRangeThe field for thelevelsrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionEnchantmentPredicate(Optional<RegistryEntry<Enchantment>> optional, NumberRange.IntRange intRange) EnchantmentPredicate(Enchantment enchantment, NumberRange.IntRange levels) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theenchantmentrecord 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(Map<Enchantment, Integer> enchantments) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
enchantment
The field for theenchantmentrecord component. -
levels
The field for thelevelsrecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector official aLbk;a:Lcom/mojang/serialization/Codec;intermediary field_45741Lnet/minecraft/class_2035;field_45741:Lcom/mojang/serialization/Codec;named CODECLnet/minecraft/predicate/item/EnchantmentPredicate;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
EnchantmentPredicate
- Mappings:
Namespace Name Mixin selector official <init>Lbk;<init>(Lcrj;Lck$d;)Vintermediary <init>Lnet/minecraft/class_2035;<init>(Lnet/minecraft/class_1887;Lnet/minecraft/class_2096$class_2100;)Vnamed <init>Lnet/minecraft/predicate/item/EnchantmentPredicate;<init>(Lnet/minecraft/enchantment/Enchantment;Lnet/minecraft/predicate/NumberRange$IntRange;)V
-
EnchantmentPredicate
public EnchantmentPredicate(Optional<RegistryEntry<Enchantment>> optional, NumberRange.IntRange intRange)
-
-
Method Details
-
test
- Mappings:
Namespace Name Mixin selector official aLbk;a(Ljava/util/Map;)Zintermediary method_8880Lnet/minecraft/class_2035;method_8880(Ljava/util/Map;)Znamed testLnet/minecraft/predicate/item/EnchantmentPredicate;test(Ljava/util/Map;)Z
-
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 theenchantmentrecord component.- Returns:
- the value of the
enchantmentrecord component
-
levels
Returns the value of thelevelsrecord component.- Returns:
- the value of the
levelsrecord component
-