Record Class CollectionCountsPredicate.Single<T,P extends Predicate<T>> 
java.lang.Object
java.lang.Record
net.minecraft.predicate.collection.CollectionCountsPredicate.Single<T,P> 
- Record Components:
- entry-
- All Implemented Interfaces:
- Predicate<Iterable<T>>,- CollectionCountsPredicate<T,- P> 
- Enclosing interface:
- CollectionCountsPredicate<T,- P extends Predicate<T>> 
public static record CollectionCountsPredicate.Single<T,P extends Predicate<T>> (CollectionCountsPredicate.Entry<T,P extends Predicate<T>> entry)
extends Record
implements CollectionCountsPredicate<T,P>  
- Mappings:
- Namespace - Name - named - net/minecraft/predicate/collection/CollectionCountsPredicate$Single- intermediary - net/minecraft/class_9643$class_9646- official - be$c- named - entry- intermediary - comp_2616- official - a
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.predicate.collection.CollectionCountsPredicateCollectionCountsPredicate.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 SummaryFieldsModifier and TypeFieldDescriptionprivate final CollectionCountsPredicate.Entry<T, P> The field for theentryrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionSingle(CollectionCountsPredicate.Entry<T, P> entry) Creates an instance of aSinglerecord class.
- 
Method SummaryModifier and TypeMethodDescriptionentry()Returns the value of theentryrecord 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.
- 
Field Details- 
entryThe field for theentryrecord component.
 
- 
- 
Constructor Details- 
SingleCreates an instance of aSinglerecord class.- Parameters:
- entry- the value for the- entryrecord component
 
 
- 
- 
Method Details- 
test- Specified by:
- testin interface- Predicate<T>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/collection/CollectionCountsPredicate$Single;test(Ljava/lang/Iterable;)Z- intermediary - method_59621- Lnet/minecraft/class_9643$class_9646;method_59621(Ljava/lang/Iterable;)Z- official - a- Lbe$c;a(Ljava/lang/Iterable;)Z
 
- 
getEntries- Specified by:
- getEntriesin interface- CollectionCountsPredicate<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- Lbe;a()Ljava/util/List;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
entryReturns the value of theentryrecord component.- Returns:
- the value of the entryrecord component
 
 
-