Record Class CollectionCountsPredicate.Multiple<T,P extends Predicate<T>>
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.CollectionCountsPredicate.Multiple<T,P>
- 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>
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.advancements.critereon.CollectionCountsPredicate
CollectionCountsPredicate.Entry<T,P extends Predicate<T>>, CollectionCountsPredicate.Multiple<T, P extends Predicate<T>>, CollectionCountsPredicate.Single<T, P extends Predicate<T>>, CollectionCountsPredicate.Zero<T, P extends Predicate<T>> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<CollectionCountsPredicate.Entry<T, P>> The field for theentriesrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionMultiple(List<CollectionCountsPredicate.Entry<T, P>> entries) Creates an instance of aMultiplerecord class. -
Method Summary
Modifier and TypeMethodDescriptionentries()Returns the value of theentriesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanfinal StringtoString()Returns a string representation of this record class.unpack()
-
Field Details
-
entries
The field for theentriesrecord component.
-
-
Constructor Details
-
Multiple
Creates an instance of aMultiplerecord class.- Parameters:
entries- the value for theentriesrecord 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). -
entries
Returns the value of theentriesrecord component.- Returns:
- the value of the
entriesrecord component
-