Package net.minecraft.predicate.entity
Record Class PlayerPredicate.StatMatcher<T>
java.lang.Object
java.lang.Record
net.minecraft.predicate.entity.PlayerPredicate.StatMatcher<T>
- Record Components:
type
-value
-range
-stat
-
- Enclosing class:
PlayerPredicate
private static record PlayerPredicate.StatMatcher<T>(StatType<T> type, RegistryEntry<T> value, NumberRange.IntRange range, Supplier<Stat<T>> stat)
extends Record
- Mappings:
Namespace Name official cq$e
intermediary net/minecraft/class_4553$class_8749
named net/minecraft/predicate/entity/PlayerPredicate$StatMatcher
official b
intermediary comp_1825
named type
official c
intermediary comp_1826
named value
official d
intermediary comp_1827
named range
official e
intermediary comp_1828
named stat
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<PlayerPredicate.StatMatcher<?>>
private final NumberRange.IntRange
The field for therange
record component.The field for thestat
record component.The field for thetype
record component.private final RegistryEntry<T>
The field for thevalue
record component. -
Constructor Summary
ModifierConstructorDescriptionStatMatcher
(StatType<T> type, RegistryEntry<T> value, NumberRange.IntRange range) private
StatMatcher
(StatType<T> statType, RegistryEntry<T> registryEntry, NumberRange.IntRange intRange, Supplier<Stat<T>> supplier) -
Method Summary
Modifier and TypeMethodDescriptionprivate static <T> com.mojang.serialization.Codec<PlayerPredicate.StatMatcher<T>>
createCodec
(StatType<T> type) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.range()
Returns the value of therange
record component.stat()
Returns the value of thestat
record component.boolean
test
(StatHandler statHandler) final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.value()
Returns the value of thevalue
record component.
-
Field Details
-
type
The field for thetype
record component. -
value
The field for thevalue
record component. -
range
The field for therange
record component. -
stat
The field for thestat
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lcq$e;a:Lcom/mojang/serialization/Codec;
intermediary field_45774
Lnet/minecraft/class_4553$class_8749;field_45774:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/predicate/entity/PlayerPredicate$StatMatcher;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
StatMatcher
- Mappings:
Namespace Name Mixin selector official <init>
Lcq$e;<init>(Lasb;Lih;Lck$d;)V
intermediary <init>
Lnet/minecraft/class_4553$class_8749;<init>(Lnet/minecraft/class_3448;Lnet/minecraft/class_6880;Lnet/minecraft/class_2096$class_2100;)V
named <init>
Lnet/minecraft/predicate/entity/PlayerPredicate$StatMatcher;<init>(Lnet/minecraft/stat/StatType;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/predicate/NumberRange$IntRange;)V
-
StatMatcher
private StatMatcher(StatType<T> statType, RegistryEntry<T> registryEntry, NumberRange.IntRange intRange, Supplier<Stat<T>> supplier)
-
-
Method Details
-
createCodec
private static <T> com.mojang.serialization.Codec<PlayerPredicate.StatMatcher<T>> createCodec(StatType<T> type) - Mappings:
Namespace Name Mixin selector official a
Lcq$e;a(Lasb;)Lcom/mojang/serialization/Codec;
intermediary method_53224
Lnet/minecraft/class_4553$class_8749;method_53224(Lnet/minecraft/class_3448;)Lcom/mojang/serialization/Codec;
named createCodec
Lnet/minecraft/predicate/entity/PlayerPredicate$StatMatcher;createCodec(Lnet/minecraft/stat/StatType;)Lcom/mojang/serialization/Codec;
-
test
- Mappings:
Namespace Name Mixin selector official a
Lcq$e;a(Lasd;)Z
intermediary method_53228
Lnet/minecraft/class_4553$class_8749;method_53228(Lnet/minecraft/class_3469;)Z
named test
Lnet/minecraft/predicate/entity/PlayerPredicate$StatMatcher;test(Lnet/minecraft/stat/StatHandler;)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)
. -
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
range
Returns the value of therange
record component.- Returns:
- the value of the
range
record component
-
stat
Returns the value of thestat
record component.- Returns:
- the value of the
stat
record component
-