Record Class CollectionCountsPredicate.Multiple<T,P extends Predicate<T>>
java.lang.Object
java.lang.Record
net.minecraft.predicate.collection.CollectionCountsPredicate.Multiple<T,P>
- Record Components:
entries
-
- All Implemented Interfaces:
Predicate<Iterable<T>>
,CollectionCountsPredicate<T,
P>
- Enclosing interface:
CollectionCountsPredicate<T,
P extends Predicate<T>>
public static record CollectionCountsPredicate.Multiple<T,P extends Predicate<T>> (List<CollectionCountsPredicate.Entry<T,P extends Predicate<T>>> entries)
extends Record
implements CollectionCountsPredicate<T,P>
- Mappings:
Namespace Name named net/minecraft/predicate/collection/CollectionCountsPredicate$Multiple
intermediary net/minecraft/class_9643$class_9645
official bb$b
named entries
intermediary comp_2615
official a
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.predicate.collection.CollectionCountsPredicate
CollectionCountsPredicate.Empty<T,
P extends Predicate<T>>, CollectionCountsPredicate.Entry<T, P extends Predicate<T>>, CollectionCountsPredicate.Multiple<T, P extends Predicate<T>>, CollectionCountsPredicate.Single<T, P extends Predicate<T>> -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionentries()
Returns the value of theentries
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
entries
The field for theentries
record component.
-
-
Constructor Details
-
Multiple
-
-
Method Details
-
test
- Specified by:
test
in interfacePredicate<T>
- Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/predicate/collection/CollectionCountsPredicate$Multiple;test(Ljava/lang/Iterable;)Z
intermediary method_59620
Lnet/minecraft/class_9643$class_9645;method_59620(Ljava/lang/Iterable;)Z
official a
Lbb$b;a(Ljava/lang/Iterable;)Z
-
getEntries
- Specified by:
getEntries
in interfaceCollectionCountsPredicate<T,
P extends Predicate<T>> - Mappings:
Namespace Name Mixin selector named getEntries
Lnet/minecraft/predicate/collection/CollectionCountsPredicate;getEntries()Ljava/util/List;
intermediary method_59613
Lnet/minecraft/class_9643;method_59613()Ljava/util/List;
official a
Lbb;a()Ljava/util/List;
-
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)
. -
entries
Returns the value of theentries
record component.- Returns:
- the value of the
entries
record component
-