Package net.minecraft
Record Class class_9643.class_9644<T,P extends Predicate<T>>
java.lang.Object
java.lang.Record
net.minecraft.class_9643.class_9644<T,P>
- Record Components:
test
-count
-
- Enclosing interface:
class_9643<T,
P extends Predicate<T>>
public static record class_9643.class_9644<T,P extends Predicate<T>> (P extends Predicate<T> test, NumberRange.IntRange count)
extends Record
- Mappings:
Namespace Name named net/minecraft/class_9643$class_9644
intermediary net/minecraft/class_9643$class_9644
official bb$a
named test
intermediary comp_2613
official a
named count
intermediary comp_2614
official b
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncount()
Returns the value of thecount
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.static <T,
P extends Predicate<T>>
com.mojang.serialization.Codec<class_9643.class_9644<T, P>> method_59617
(com.mojang.serialization.Codec<P> codec) boolean
method_59619
(Iterable<T> iterable) test()
Returns the value of thetest
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
class_9644
-
-
Method Details
-
method_59617
public static <T,P extends Predicate<T>> com.mojang.serialization.Codec<class_9643.class_9644<T,P>> method_59617(com.mojang.serialization.Codec<P> codec) - Mappings:
Namespace Name Mixin selector named method_59617
Lnet/minecraft/class_9643$class_9644;method_59617(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
intermediary method_59617
Lnet/minecraft/class_9643$class_9644;method_59617(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
official a
Lbb$a;a(Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
-
method_59619
- Mappings:
Namespace Name Mixin selector named method_59619
Lnet/minecraft/class_9643$class_9644;method_59619(Ljava/lang/Iterable;)Z
intermediary method_59619
Lnet/minecraft/class_9643$class_9644;method_59619(Ljava/lang/Iterable;)Z
official a
Lbb$a;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)
. -
test
Returns the value of thetest
record component.- Returns:
- the value of the
test
record component
-
count
Returns the value of thecount
record component.- Returns:
- the value of the
count
record component
-