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 bb$a
named test
intermediary comp_2613
official a
named count
intermediary comp_2614
official b
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncount()
Returns the value of thecount
record component.static <T,
P extends Predicate<T>>
com.mojang.serialization.Codec<CollectionCountsPredicate.Entry<T, P>> createCodec
(com.mojang.serialization.Codec<P> predicateCodec) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.test()
Returns the value of thetest
record component.boolean
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
Entry
-
-
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
Lbb$a;a(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
-
test
- 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
Lbb$a;a(Ljava/lang/Iterable;)Z
-
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. -
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. -
equals
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 withObjects::equals(Object,Object)
. -
test
Returns the value of thetest
record component.- Returns:
- the value of the
test
record component
-
count
Returns the value of thecount
record component.- Returns:
- the value of the
count
record component
-