Record Class EffectsChangedTrigger.TriggerInstance
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.EffectsChangedTrigger.TriggerInstance
- All Implemented Interfaces:
SimpleCriterionTrigger.SimpleInstance
,CriterionTriggerInstance
- Enclosing class:
- EffectsChangedTrigger
public static record EffectsChangedTrigger.TriggerInstance(Optional<ContextAwarePredicate> player, Optional<MobEffectsPredicate> effects, Optional<ContextAwarePredicate> source)
extends Record
implements SimpleCriterionTrigger.SimpleInstance
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EffectsChangedTrigger.TriggerInstance>
private final Optional<MobEffectsPredicate>
The field for theeffects
record component.private final Optional<ContextAwarePredicate>
The field for theplayer
record component.private final Optional<ContextAwarePredicate>
The field for thesource
record component. -
Constructor Summary
ConstructorDescriptionTriggerInstance
(Optional<ContextAwarePredicate> player, Optional<MobEffectsPredicate> effects, Optional<ContextAwarePredicate> source) Creates an instance of aTriggerInstance
record class. -
Method Summary
Modifier and TypeMethodDescriptioneffects()
Returns the value of theeffects
record component.final boolean
Indicates whether some other object is "equal to" this one.gotEffectsFrom
(EntityPredicate.Builder p_298504_) hasEffects
(MobEffectsPredicate.Builder p_300809_) final int
hashCode()
Returns a hash code value for this object.boolean
matches
(ServerPlayer p_149275_, LootContext p_149276_) player()
Returns the value of theplayer
record component.source()
Returns the value of thesource
record component.final String
toString()
Returns a string representation of this record class.void
validate
(CriterionValidator p_312004_)
-
Field Details
-
player
The field for theplayer
record component. -
effects
The field for theeffects
record component. -
source
The field for thesource
record component. -
CODEC
-
-
Constructor Details
-
TriggerInstance
public TriggerInstance(Optional<ContextAwarePredicate> player, Optional<MobEffectsPredicate> effects, Optional<ContextAwarePredicate> source) Creates an instance of aTriggerInstance
record class.- Parameters:
player
- the value for theplayer
record componenteffects
- the value for theeffects
record componentsource
- the value for thesource
record component
-
-
Method Details
-
hasEffects
public static Criterion<EffectsChangedTrigger.TriggerInstance> hasEffects(MobEffectsPredicate.Builder p_300809_) -
gotEffectsFrom
public static Criterion<EffectsChangedTrigger.TriggerInstance> gotEffectsFrom(EntityPredicate.Builder p_298504_) -
matches
-
validate
- Specified by:
validate
in interfaceCriterionTriggerInstance
- Specified by:
validate
in interfaceSimpleCriterionTrigger.SimpleInstance
-
player
Returns the value of theplayer
record component.- Specified by:
player
in interfaceSimpleCriterionTrigger.SimpleInstance
- Returns:
- the value of the
player
record component
-
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)
. -
effects
Returns the value of theeffects
record component.- Returns:
- the value of the
effects
record component
-
source
Returns the value of thesource
record component.- Returns:
- the value of the
source
record component
-