Record Class CollectionPredicate<T,P extends Predicate<T>>
java.lang.Object
java.lang.Record
net.minecraft.predicate.collection.CollectionPredicate<T,P>
- Record Components:
contains
-counts
-size
-
public record CollectionPredicate<T,P extends Predicate<T>> (Optional<CollectionContainsPredicate<T,P extends Predicate<T>>> contains, Optional<CollectionCountsPredicate<T,P extends Predicate<T>>> counts, Optional<NumberRange.IntRange> size)
extends Record
implements Predicate<Iterable<T>>
- Mappings:
Namespace Name named net/minecraft/predicate/collection/CollectionPredicate
intermediary net/minecraft/class_9648
official bc
named contains
intermediary comp_2617
official a
named counts
intermediary comp_2618
official b
named size
intermediary comp_2619
official c
-
Field Summary
Modifier and TypeFieldDescriptionprivate final Optional
<CollectionContainsPredicate<T, P>> The field for thecontains
record component.private final Optional
<CollectionCountsPredicate<T, P>> The field for thecounts
record component.private final Optional
<NumberRange.IntRange> The field for thesize
record component. -
Constructor Summary
ConstructorDescriptionCollectionPredicate
(Optional<CollectionContainsPredicate<T, P>> optional, Optional<CollectionCountsPredicate<T, P>> optional2, Optional<NumberRange.IntRange> optional3) -
Method Summary
Modifier and TypeMethodDescriptioncontains()
Returns the value of thecontains
record component.counts()
Returns the value of thecounts
record component.static <T,
P extends Predicate<T>>
com.mojang.serialization.Codec<CollectionPredicate<T, P>> createCodec
(com.mojang.serialization.Codec<P> predicateCodec) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.size()
Returns the value of thesize
record component.boolean
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
CollectionPredicate
public CollectionPredicate(Optional<CollectionContainsPredicate<T, P>> optional, Optional<CollectionCountsPredicate<T, P>> optional2, Optional<NumberRange.IntRange> optional3)
-
-
Method Details
-
createCodec
public static <T,P extends Predicate<T>> com.mojang.serialization.Codec<CollectionPredicate<T,P>> createCodec(com.mojang.serialization.Codec<P> predicateCodec) - Mappings:
Namespace Name Mixin selector named createCodec
Lnet/minecraft/predicate/collection/CollectionPredicate;createCodec(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
intermediary method_59623
Lnet/minecraft/class_9648;method_59623(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
official a
Lbc;a(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
-
test
- Specified by:
test
in interfacePredicate<T>
- Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/predicate/collection/CollectionPredicate;test(Ljava/lang/Iterable;)Z
intermediary method_59625
Lnet/minecraft/class_9648;method_59625(Ljava/lang/Iterable;)Z
official a
Lbc;a(Ljava/lang/Iterable;)Z
-
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)
. -
contains
Returns the value of thecontains
record component.- Returns:
- the value of the
contains
record component
-
counts
Returns the value of thecounts
record component.- Returns:
- the value of the
counts
record component
-
size
Returns the value of thesize
record component.- Returns:
- the value of the
size
record component
-