Record Class CollectionCountsPredicate.Entry<T,P extends Predicate<T>>

java.lang.Object
java.lang.Record
net.minecraft.predicate.collection.CollectionCountsPredicate.Entry<T,P>
Record Components:
test -
count -
Enclosing interface:
CollectionCountsPredicate<T,P extends Predicate<T>>

public static record CollectionCountsPredicate.Entry<T,P extends Predicate<T>>(P extends Predicate<T> test, NumberRange.IntRange count) extends Record
Mappings:
Namespace Name
named net/minecraft/predicate/collection/CollectionCountsPredicate$Entry
intermediary net/minecraft/class_9643$class_9644
official bc$a
named test
intermediary comp_2613
official a
named count
intermediary comp_2614
official b
  • Field Details

  • Constructor Details

  • Method Details

    • createCodec

      public static <T, P extends Predicate<T>> com.mojang.serialization.Codec<CollectionCountsPredicate.Entry<T,P>> createCodec(com.mojang.serialization.Codec<P> predicateCodec)
      Mappings:
      Namespace Name Mixin selector
      named createCodec Lnet/minecraft/predicate/collection/CollectionCountsPredicate$Entry;createCodec(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
      intermediary method_59617 Lnet/minecraft/class_9643$class_9644;method_59617(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
      official a Lbc$a;a(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
    • test

      public boolean test(Iterable<T> collection)
      Mappings:
      Namespace Name Mixin selector
      named test Lnet/minecraft/predicate/collection/CollectionCountsPredicate$Entry;test(Ljava/lang/Iterable;)Z
      intermediary method_59619 Lnet/minecraft/class_9643$class_9644;method_59619(Ljava/lang/Iterable;)Z
      official a Lbc$a;a(Ljava/lang/Iterable;)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.
    • test

      public P test()
      Returns the value of the test record component.
      Returns:
      the value of the test record component
    • count

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