Record Class EntityEquipmentPredicate

java.lang.Object
java.lang.Record
net.minecraft.predicate.entity.EntityEquipmentPredicate
Record Components:
head -
chest -
legs -
feet -
mainhand -
offhand -

public record EntityEquipmentPredicate(Optional<ItemPredicate> head, Optional<ItemPredicate> chest, Optional<ItemPredicate> legs, Optional<ItemPredicate> feet, Optional<ItemPredicate> mainhand, Optional<ItemPredicate> offhand) extends Record
Mappings:
Namespace Name
official bm
intermediary net/minecraft/class_3735
named net/minecraft/predicate/entity/EntityEquipmentPredicate
official c
intermediary comp_1750
named head
official d
intermediary comp_1751
named chest
official e
intermediary comp_1752
named legs
official f
intermediary comp_1753
named feet
official g
intermediary comp_1754
named mainhand
official h
intermediary comp_1755
named offhand
  • Field Details

    • chest

      private final Optional<ItemPredicate> chest
      The field for the chest record component.
    • legs

      private final Optional<ItemPredicate> legs
      The field for the legs record component.
    • feet

      private final Optional<ItemPredicate> feet
      The field for the feet record component.
    • mainhand

      private final Optional<ItemPredicate> mainhand
      The field for the mainhand record component.
    • offhand

      private final Optional<ItemPredicate> offhand
      The field for the offhand record component.
    • CODEC

      public static final com.mojang.serialization.Codec<EntityEquipmentPredicate> CODEC
      Mappings:
      Namespace Name Mixin selector
      official a Lbm;a:Lcom/mojang/serialization/Codec;
      intermediary field_45744 Lnet/minecraft/class_3735;field_45744:Lcom/mojang/serialization/Codec;
      named CODEC Lnet/minecraft/predicate/entity/EntityEquipmentPredicate;CODEC:Lcom/mojang/serialization/Codec;
    • OMINOUS_BANNER_ON_HEAD

      public static final EntityEquipmentPredicate OMINOUS_BANNER_ON_HEAD
      Mappings:
      Namespace Name Mixin selector
      official b Lbm;b:Lbm;
      intermediary field_19240 Lnet/minecraft/class_3735;field_19240:Lnet/minecraft/class_3735;
      named OMINOUS_BANNER_ON_HEAD Lnet/minecraft/predicate/entity/EntityEquipmentPredicate;OMINOUS_BANNER_ON_HEAD:Lnet/minecraft/predicate/entity/EntityEquipmentPredicate;
  • Constructor Details

  • Method Details

    • test

      public boolean test(@Nullable @Nullable Entity entity)
      Mappings:
      Namespace Name Mixin selector
      official a Lbm;a(Lblv;)Z
      intermediary method_16226 Lnet/minecraft/class_3735;method_16226(Lnet/minecraft/class_1297;)Z
      named test Lnet/minecraft/predicate/entity/EntityEquipmentPredicate;test(Lnet/minecraft/entity/Entity;)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.
    • head

      public Optional<ItemPredicate> head()
      Returns the value of the head record component.
      Returns:
      the value of the head record component
    • chest

      public Optional<ItemPredicate> chest()
      Returns the value of the chest record component.
      Returns:
      the value of the chest record component
    • legs

      public Optional<ItemPredicate> legs()
      Returns the value of the legs record component.
      Returns:
      the value of the legs record component
    • feet

      public Optional<ItemPredicate> feet()
      Returns the value of the feet record component.
      Returns:
      the value of the feet record component
    • mainhand

      public Optional<ItemPredicate> mainhand()
      Returns the value of the mainhand record component.
      Returns:
      the value of the mainhand record component
    • offhand

      public Optional<ItemPredicate> offhand()
      Returns the value of the offhand record component.
      Returns:
      the value of the offhand record component