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 - named - net/minecraft/predicate/entity/PlayerPredicate$StatMatcher- intermediary - net/minecraft/class_4553$class_8749- official - ds$e- named - type- intermediary - comp_1825- official - b- named - value- intermediary - comp_1826- official - c- named - range- intermediary - comp_1827- official - d- named - stat- intermediary - comp_1828- official - e
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<PlayerPredicate.StatMatcher<?>> private final NumberRange.IntRangeThe field for therangerecord component.The field for thestatrecord component.The field for thetyperecord component.private final RegistryEntry<T> The field for thevaluerecord component.
- 
Constructor SummaryConstructorsModifierConstructorDescriptionStatMatcher(StatType<T> type, RegistryEntry<T> value, NumberRange.IntRange range) privateStatMatcher(StatType<T> statType, RegistryEntry<T> registryEntry, NumberRange.IntRange intRange, Supplier<Stat<T>> supplier) 
- 
Method SummaryModifier and TypeMethodDescriptionprivate static <T> com.mojang.serialization.MapCodec<PlayerPredicate.StatMatcher<T>> createCodec(StatType<T> type) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.range()Returns the value of therangerecord component.stat()Returns the value of thestatrecord component.booleantest(StatHandler statHandler) final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.value()Returns the value of thevaluerecord component.
- 
Field Details- 
typeThe field for thetyperecord component.
- 
valueThe field for thevaluerecord component.
- 
rangeThe field for therangerecord component.
- 
statThe field for thestatrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/predicate/entity/PlayerPredicate$StatMatcher;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_45774- Lnet/minecraft/class_4553$class_8749;field_45774:Lcom/mojang/serialization/Codec;- official - a- Lds$e;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
StatMatcher- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/predicate/entity/PlayerPredicate$StatMatcher;<init>(Lnet/minecraft/stat/StatType;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/predicate/NumberRange$IntRange;)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- official - <init>- Lds$e;<init>(Lawj;Ljr;Ldk$d;)V
 
- 
StatMatcherprivate StatMatcher(StatType<T> statType, RegistryEntry<T> registryEntry, NumberRange.IntRange intRange, Supplier<Stat<T>> supplier) 
 
- 
- 
Method Details- 
createCodecprivate static <T> com.mojang.serialization.MapCodec<PlayerPredicate.StatMatcher<T>> createCodec(StatType<T> type) - Mappings:
- Namespace - Name - Mixin selector - named - createCodec- Lnet/minecraft/predicate/entity/PlayerPredicate$StatMatcher;createCodec(Lnet/minecraft/stat/StatType;)Lcom/mojang/serialization/MapCodec;- intermediary - method_53224- Lnet/minecraft/class_4553$class_8749;method_53224(Lnet/minecraft/class_3448;)Lcom/mojang/serialization/MapCodec;- official - a- Lds$e;a(Lawj;)Lcom/mojang/serialization/MapCodec;
 
- 
test- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/entity/PlayerPredicate$StatMatcher;test(Lnet/minecraft/stat/StatHandler;)Z- intermediary - method_53228- Lnet/minecraft/class_4553$class_8749;method_53228(Lnet/minecraft/class_3469;)Z- official - a- Lds$e;a(Lawl;)Z
 
- 
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).
- 
typeReturns the value of thetyperecord component.- Returns:
- the value of the typerecord component
 
- 
valueReturns the value of thevaluerecord component.- Returns:
- the value of the valuerecord component
 
- 
rangeReturns the value of therangerecord component.- Returns:
- the value of the rangerecord component
 
- 
statReturns the value of thestatrecord component.- Returns:
- the value of the statrecord component
 
 
-