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 bb$c
named entry
intermediary comp_2616
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
Modifier and TypeFieldDescriptionprivate final CollectionCountsPredicate.Entry
<T, P> The field for theentry
record component. -
Constructor Summary
ConstructorDescriptionSingle
(CollectionCountsPredicate.Entry<T, P> entry) Creates an instance of aSingle
record class. -
Method Summary
Modifier and TypeMethodDescriptionentry()
Returns the value of theentry
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
-
entry
The field for theentry
record component.
-
-
Constructor Details
-
Single
Creates an instance of aSingle
record class.- Parameters:
entry
- the value for theentry
record component
-
-
Method Details
-
test
- Specified by:
test
in interfacePredicate<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
Lbb$c;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)
. -
entry
Returns the value of theentry
record component.- Returns:
- the value of the
entry
record component
-