Record Class StatePredicate

java.lang.Object
java.lang.Record
net.minecraft.predicate.StatePredicate
Record Components:
conditions -

public record StatePredicate(List<StatePredicate.Condition> conditions) extends Record
Mappings:
Namespace Name
named net/minecraft/predicate/StatePredicate
intermediary net/minecraft/class_4559
official dy
named conditions
intermediary comp_1830
official c
  • Field Details

    • conditions

      private final List<StatePredicate.Condition> conditions
      The field for the conditions record component.
    • CONDITION_LIST_CODEC

      private static final com.mojang.serialization.Codec<List<StatePredicate.Condition>> CONDITION_LIST_CODEC
      Mappings:
      Namespace Name Mixin selector
      named CONDITION_LIST_CODEC Lnet/minecraft/predicate/StatePredicate;CONDITION_LIST_CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_45778 Lnet/minecraft/class_4559;field_45778:Lcom/mojang/serialization/Codec;
      official d Ldy;d:Lcom/mojang/serialization/Codec;
    • CODEC

      public static final com.mojang.serialization.Codec<StatePredicate> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/predicate/StatePredicate;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_45777 Lnet/minecraft/class_4559;field_45777:Lcom/mojang/serialization/Codec;
      official a Ldy;a:Lcom/mojang/serialization/Codec;
    • PACKET_CODEC

      public static final PacketCodec<ByteBuf,StatePredicate> PACKET_CODEC
      Mappings:
      Namespace Name Mixin selector
      named PACKET_CODEC Lnet/minecraft/predicate/StatePredicate;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;
      intermediary field_49396 Lnet/minecraft/class_4559;field_49396:Lnet/minecraft/class_9139;
      official b Ldy;b:Lys;
  • Constructor Details

    • StatePredicate

      public StatePredicate(List<StatePredicate.Condition> conditions)
      Creates an instance of a StatePredicate record class.
      Parameters:
      conditions - the value for the conditions record component
  • Method Details

    • test

      public <S extends State<?, S>> boolean test(StateManager<?,S> stateManager, S container)
      Mappings:
      Namespace Name Mixin selector
      named test Lnet/minecraft/predicate/StatePredicate;test(Lnet/minecraft/state/StateManager;Lnet/minecraft/state/State;)Z
      intermediary method_22515 Lnet/minecraft/class_4559;method_22515(Lnet/minecraft/class_2689;Lnet/minecraft/class_2688;)Z
      official a Ldy;a(Ldsm;Ldsn;)Z
    • test

      public boolean test(BlockState state)
      Mappings:
      Namespace Name Mixin selector
      named test Lnet/minecraft/predicate/StatePredicate;test(Lnet/minecraft/block/BlockState;)Z
      intermediary method_22514 Lnet/minecraft/class_4559;method_22514(Lnet/minecraft/class_2680;)Z
      official a Ldy;a(Ldsl;)Z
    • test

      public boolean test(FluidState state)
      Mappings:
      Namespace Name Mixin selector
      named test Lnet/minecraft/predicate/StatePredicate;test(Lnet/minecraft/fluid/FluidState;)Z
      intermediary method_22518 Lnet/minecraft/class_4559;method_22518(Lnet/minecraft/class_3610;)Z
      official a Ldy;a(Leoj;)Z
    • findMissing

      public Optional<String> findMissing(StateManager<?,?> stateManager)
      Mappings:
      Namespace Name Mixin selector
      named findMissing Lnet/minecraft/predicate/StatePredicate;findMissing(Lnet/minecraft/state/StateManager;)Ljava/util/Optional;
      intermediary method_53235 Lnet/minecraft/class_4559;method_53235(Lnet/minecraft/class_2689;)Ljava/util/Optional;
      official a Ldy;a(Ldsm;)Ljava/util/Optional;
    • 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.
    • conditions

      public List<StatePredicate.Condition> conditions()
      Returns the value of the conditions record component.
      Returns:
      the value of the conditions record component