Record Class CollectionContentsPredicate.Multiple<T,P extends Predicate<T>>
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.CollectionContentsPredicate.Multiple<T,P>
- All Implemented Interfaces:
Predicate<Iterable<T>>
,CollectionContentsPredicate<T,
P>
- Enclosing interface:
CollectionContentsPredicate<T,
P extends Predicate<T>>
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.advancements.critereon.CollectionContentsPredicate
CollectionContentsPredicate.Multiple<T,
P extends Predicate<T>>, CollectionContentsPredicate.Single<T, P extends Predicate<T>>, CollectionContentsPredicate.Zero<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.unpack()
-
Field Details
-
tests
The field for thetests
record component.
-
-
Constructor Details
-
Multiple
Creates an instance of aMultiple
record class.- Parameters:
tests
- the value for thetests
record component
-
-
Method Details
-
test
-
unpack
-
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
-