Record Class EntityHurtPlayerCriterion.Conditions
java.lang.Object
java.lang.Record
net.minecraft.advancement.criterion.EntityHurtPlayerCriterion.Conditions
- Record Components:
- player-
- damage-
- All Implemented Interfaces:
- AbstractCriterion.Conditions,- CriterionConditions
- Enclosing class:
- EntityHurtPlayerCriterion
public static record EntityHurtPlayerCriterion.Conditions(Optional<LootContextPredicate> player, Optional<DamagePredicate> damage)
extends Record
implements AbstractCriterion.Conditions
- Mappings:
- Namespace - Name - named - net/minecraft/advancement/criterion/EntityHurtPlayerCriterion$Conditions- intermediary - net/minecraft/class_2044$class_2046- official - bw$a- named - player- intermediary - comp_2029- official - b- named - damage- intermediary - comp_2052- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EntityHurtPlayerCriterion.Conditions> private final Optional<DamagePredicate> The field for thedamagerecord component.private final Optional<LootContextPredicate> The field for theplayerrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionConditions(Optional<LootContextPredicate> playerPredicate, Optional<DamagePredicate> damage) 
- 
Method SummaryModifier and TypeMethodDescriptioncreate()create(DamagePredicate predicate) create(DamagePredicate.Builder damageBuilder) damage()Returns the value of thedamagerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanmatches(ServerPlayerEntity player, DamageSource damageSource, float dealt, float taken, boolean blocked) player()Returns the value of theplayerrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.advancement.criterion.AbstractCriterion.Conditionsvalidate
- 
Field Details- 
playerThe field for theplayerrecord component.
- 
damageThe field for thedamagerecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/advancement/criterion/EntityHurtPlayerCriterion$Conditions;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_47249- Lnet/minecraft/class_2044$class_2046;field_47249:Lcom/mojang/serialization/Codec;- official - a- Lbw$a;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
Conditions- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/advancement/criterion/EntityHurtPlayerCriterion$Conditions;<init>(Ljava/util/Optional;Ljava/util/Optional;)V- intermediary - <init>- Lnet/minecraft/class_2044$class_2046;<init>(Ljava/util/Optional;Ljava/util/Optional;)V- official - <init>- Lbw$a;<init>(Ljava/util/Optional;Ljava/util/Optional;)V
 
 
- 
- 
Method Details- 
create- Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/advancement/criterion/EntityHurtPlayerCriterion$Conditions;create()Lnet/minecraft/advancement/AdvancementCriterion;- intermediary - method_35210- Lnet/minecraft/class_2044$class_2046;method_35210()Lnet/minecraft/class_175;- official - b- Lbw$a;b()Laq;
 
- 
createpublic static AdvancementCriterion<EntityHurtPlayerCriterion.Conditions> create(DamagePredicate predicate) - Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/advancement/criterion/EntityHurtPlayerCriterion$Conditions;create(Lnet/minecraft/predicate/DamagePredicate;)Lnet/minecraft/advancement/AdvancementCriterion;- intermediary - method_35209- Lnet/minecraft/class_2044$class_2046;method_35209(Lnet/minecraft/class_2019;)Lnet/minecraft/class_175;- official - a- Lbw$a;a(Lbl;)Laq;
 
- 
createpublic static AdvancementCriterion<EntityHurtPlayerCriterion.Conditions> create(DamagePredicate.Builder damageBuilder) - Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/advancement/criterion/EntityHurtPlayerCriterion$Conditions;create(Lnet/minecraft/predicate/DamagePredicate$Builder;)Lnet/minecraft/advancement/AdvancementCriterion;- intermediary - method_8908- Lnet/minecraft/class_2044$class_2046;method_8908(Lnet/minecraft/class_2019$class_2020;)Lnet/minecraft/class_175;- official - a- Lbw$a;a(Lbl$a;)Laq;
 
- 
matchespublic boolean matches(ServerPlayerEntity player, DamageSource damageSource, float dealt, float taken, boolean blocked) - Mappings:
- Namespace - Name - Mixin selector - named - matches- Lnet/minecraft/advancement/criterion/EntityHurtPlayerCriterion$Conditions;matches(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/entity/damage/DamageSource;FFZ)Z- intermediary - method_8907- Lnet/minecraft/class_2044$class_2046;method_8907(Lnet/minecraft/class_3222;Lnet/minecraft/class_1282;FFZ)Z- official - a- Lbw$a;a(Lare;Lbtc;FFZ)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).
- 
playerReturns the value of theplayerrecord component.- Specified by:
- playerin interface- AbstractCriterion.Conditions
- Returns:
- the value of the playerrecord component
 
- 
damageReturns the value of thedamagerecord component.- Returns:
- the value of the damagerecord component
 
 
-