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 bk
intermediary net/minecraft/class_2035
named net/minecraft/predicate/item/EnchantmentPredicate
official b
intermediary comp_1748
named enchantment
official c
intermediary comp_1749
named levels
  • Field Details

    • enchantment

      private final Optional<RegistryEntry<Enchantment>> enchantment
      The field for the enchantment record component.
    • levels

      private final NumberRange.IntRange levels
      The field for the levels record component.
    • CODEC

      public static final com.mojang.serialization.Codec<EnchantmentPredicate> CODEC
      Mappings:
      Namespace Name Mixin selector
      official a Lbk;a:Lcom/mojang/serialization/Codec;
      intermediary field_45741 Lnet/minecraft/class_2035;field_45741:Lcom/mojang/serialization/Codec;
      named CODEC Lnet/minecraft/predicate/item/EnchantmentPredicate;CODEC:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • EnchantmentPredicate

      public EnchantmentPredicate(Enchantment enchantment, NumberRange.IntRange levels)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lbk;<init>(Lcrj;Lck$d;)V
      intermediary <init> Lnet/minecraft/class_2035;<init>(Lnet/minecraft/class_1887;Lnet/minecraft/class_2096$class_2100;)V
      named <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

      public boolean test(Map<Enchantment,Integer> enchantments)
      Mappings:
      Namespace Name Mixin selector
      official a Lbk;a(Ljava/util/Map;)Z
      intermediary method_8880 Lnet/minecraft/class_2035;method_8880(Ljava/util/Map;)Z
      named test Lnet/minecraft/predicate/item/EnchantmentPredicate;test(Ljava/util/Map;)Z
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • enchantment

      public Optional<RegistryEntry<Enchantment>> enchantment()
      Returns the value of the enchantment record component.
      Returns:
      the value of the enchantment record component
    • levels

      public NumberRange.IntRange levels()
      Returns the value of the levels record component.
      Returns:
      the value of the levels record component