Record Class CollectionContainsPredicate.Multiple<T,P extends Predicate<T>>
java.lang.Object
java.lang.Record
net.minecraft.predicate.collection.CollectionContainsPredicate.Multiple<T,P>
- Record Components:
tests
-
- All Implemented Interfaces:
Predicate<Iterable<T>>
,CollectionContainsPredicate<T,
P>
- Enclosing interface:
CollectionContainsPredicate<T,
P extends Predicate<T>>
public static record CollectionContainsPredicate.Multiple<T,P extends Predicate<T>> (List<P extends Predicate<T>> tests)
extends Record
implements CollectionContainsPredicate<T,P>
- Mappings:
Namespace Name named net/minecraft/predicate/collection/CollectionContainsPredicate$Multiple
intermediary net/minecraft/class_9639$class_9640
official ba$a
named tests
intermediary comp_2611
official a
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.predicate.collection.CollectionContainsPredicate
CollectionContainsPredicate.Empty<T,
P extends Predicate<T>>, CollectionContainsPredicate.Multiple<T, P extends Predicate<T>>, CollectionContainsPredicate.Single<T, P extends Predicate<T>> -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
tests()
Returns the value of thetests
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
tests
The field for thetests
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/CollectionContainsPredicate$Multiple;test(Ljava/lang/Iterable;)Z
intermediary method_59609
Lnet/minecraft/class_9639$class_9640;method_59609(Ljava/lang/Iterable;)Z
official a
Lba$a;a(Ljava/lang/Iterable;)Z
-
getPredicates
- Specified by:
getPredicates
in interfaceCollectionContainsPredicate<T,
P extends Predicate<T>> - Mappings:
Namespace Name Mixin selector named getPredicates
Lnet/minecraft/predicate/collection/CollectionContainsPredicate;getPredicates()Ljava/util/List;
intermediary method_59605
Lnet/minecraft/class_9639;method_59605()Ljava/util/List;
official a
Lba;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)
. -
tests
Returns the value of thetests
record component.- Returns:
- the value of the
tests
record component
-