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
official cz
intermediary net/minecraft/class_4559
named net/minecraft/predicate/StatePredicate
official b
intermediary comp_1830
named conditions
  • 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
      official c Lcz;c:Lcom/mojang/serialization/Codec;
      intermediary field_45778 Lnet/minecraft/class_4559;field_45778:Lcom/mojang/serialization/Codec;
      named CONDITION_LIST_CODEC Lnet/minecraft/predicate/StatePredicate;CONDITION_LIST_CODEC:Lcom/mojang/serialization/Codec;
    • CODEC

      public static final com.mojang.serialization.Codec<StatePredicate> CODEC
      Mappings:
      Namespace Name Mixin selector
      official a Lcz;a:Lcom/mojang/serialization/Codec;
      intermediary field_45777 Lnet/minecraft/class_4559;field_45777:Lcom/mojang/serialization/Codec;
      named CODEC Lnet/minecraft/predicate/StatePredicate;CODEC:Lcom/mojang/serialization/Codec;
  • 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
      official a Lcz;a(Ldji;Ldjj;)Z
      intermediary method_22515 Lnet/minecraft/class_4559;method_22515(Lnet/minecraft/class_2689;Lnet/minecraft/class_2688;)Z
      named test Lnet/minecraft/predicate/StatePredicate;test(Lnet/minecraft/state/StateManager;Lnet/minecraft/state/State;)Z
    • test

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

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

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