Record Class KilledTrigger.TriggerInstance
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.KilledTrigger.TriggerInstance
- All Implemented Interfaces:
SimpleCriterionTrigger.SimpleInstance
,CriterionTriggerInstance
- Enclosing class:
KilledTrigger
public static record KilledTrigger.TriggerInstance(Optional<ContextAwarePredicate> player, Optional<ContextAwarePredicate> entityPredicate, Optional<DamageSourcePredicate> killingBlow)
extends Record
implements SimpleCriterionTrigger.SimpleInstance
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<KilledTrigger.TriggerInstance>
private final Optional<ContextAwarePredicate>
The field for theentityPredicate
record component.private final Optional<DamageSourcePredicate>
The field for thekillingBlow
record component.private final Optional<ContextAwarePredicate>
The field for theplayer
record component. -
Constructor Summary
ConstructorDescriptionTriggerInstance
(Optional<ContextAwarePredicate> player, Optional<ContextAwarePredicate> entityPredicate, Optional<DamageSourcePredicate> killingBlow) Creates an instance of aTriggerInstance
record class. -
Method Summary
Modifier and TypeMethodDescriptionentityKilledPlayer
(Optional<EntityPredicate> p_298209_) entityKilledPlayer
(Optional<EntityPredicate> p_298878_, Optional<DamageSourcePredicate> p_300913_) entityKilledPlayer
(Optional<EntityPredicate> p_301135_, DamageSourcePredicate.Builder p_301143_) entityKilledPlayer
(EntityPredicate.Builder p_298389_) entityKilledPlayer
(EntityPredicate.Builder p_152119_, Optional<DamageSourcePredicate> p_301181_) entityKilledPlayer
(EntityPredicate.Builder p_301108_, DamageSourcePredicate.Builder p_298860_) Returns the value of theentityPredicate
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.Returns the value of thekillingBlow
record component.boolean
matches
(ServerPlayer p_48131_, LootContext p_48132_, DamageSource p_48133_) player()
Returns the value of theplayer
record component.playerKilledEntity
(Optional<EntityPredicate> p_298999_) playerKilledEntity
(Optional<EntityPredicate> p_300920_, Optional<DamageSourcePredicate> p_300985_) playerKilledEntity
(Optional<EntityPredicate> p_299297_, DamageSourcePredicate.Builder p_301016_) playerKilledEntity
(EntityPredicate.Builder p_48137_) playerKilledEntity
(EntityPredicate.Builder p_300879_, Optional<DamageSourcePredicate> p_298956_) playerKilledEntity
(EntityPredicate.Builder p_152106_, DamageSourcePredicate.Builder p_301319_) final String
toString()
Returns a string representation of this record class.void
validate
(CriterionValidator p_311935_)
-
Field Details
-
player
The field for theplayer
record component. -
entityPredicate
The field for theentityPredicate
record component. -
killingBlow
The field for thekillingBlow
record component. -
CODEC
-
-
Constructor Details
-
TriggerInstance
public TriggerInstance(Optional<ContextAwarePredicate> player, Optional<ContextAwarePredicate> entityPredicate, Optional<DamageSourcePredicate> killingBlow) Creates an instance of aTriggerInstance
record class.- Parameters:
player
- the value for theplayer
record componententityPredicate
- the value for theentityPredicate
record componentkillingBlow
- the value for thekillingBlow
record component
-
-
Method Details
-
playerKilledEntity
public static Criterion<KilledTrigger.TriggerInstance> playerKilledEntity(Optional<EntityPredicate> p_298999_) -
playerKilledEntity
public static Criterion<KilledTrigger.TriggerInstance> playerKilledEntity(EntityPredicate.Builder p_48137_) -
playerKilledEntity
-
playerKilledEntity
public static Criterion<KilledTrigger.TriggerInstance> playerKilledEntity(Optional<EntityPredicate> p_300920_, Optional<DamageSourcePredicate> p_300985_) -
playerKilledEntity
public static Criterion<KilledTrigger.TriggerInstance> playerKilledEntity(EntityPredicate.Builder p_300879_, Optional<DamageSourcePredicate> p_298956_) -
playerKilledEntity
public static Criterion<KilledTrigger.TriggerInstance> playerKilledEntity(Optional<EntityPredicate> p_299297_, DamageSourcePredicate.Builder p_301016_) -
playerKilledEntity
public static Criterion<KilledTrigger.TriggerInstance> playerKilledEntity(EntityPredicate.Builder p_152106_, DamageSourcePredicate.Builder p_301319_) -
playerKilledEntityNearSculkCatalyst
-
entityKilledPlayer
public static Criterion<KilledTrigger.TriggerInstance> entityKilledPlayer(Optional<EntityPredicate> p_298209_) -
entityKilledPlayer
public static Criterion<KilledTrigger.TriggerInstance> entityKilledPlayer(EntityPredicate.Builder p_298389_) -
entityKilledPlayer
-
entityKilledPlayer
public static Criterion<KilledTrigger.TriggerInstance> entityKilledPlayer(Optional<EntityPredicate> p_298878_, Optional<DamageSourcePredicate> p_300913_) -
entityKilledPlayer
public static Criterion<KilledTrigger.TriggerInstance> entityKilledPlayer(EntityPredicate.Builder p_152119_, Optional<DamageSourcePredicate> p_301181_) -
entityKilledPlayer
public static Criterion<KilledTrigger.TriggerInstance> entityKilledPlayer(Optional<EntityPredicate> p_301135_, DamageSourcePredicate.Builder p_301143_) -
entityKilledPlayer
public static Criterion<KilledTrigger.TriggerInstance> entityKilledPlayer(EntityPredicate.Builder p_301108_, DamageSourcePredicate.Builder p_298860_) -
matches
-
validate
- Specified by:
validate
in interfaceCriterionTriggerInstance
- Specified by:
validate
in interfaceSimpleCriterionTrigger.SimpleInstance
-
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)
. -
player
Returns the value of theplayer
record component.- Specified by:
player
in interfaceSimpleCriterionTrigger.SimpleInstance
- Returns:
- the value of the
player
record component
-
entityPredicate
Returns the value of theentityPredicate
record component.- Returns:
- the value of the
entityPredicate
record component
-
killingBlow
Returns the value of thekillingBlow
record component.- Returns:
- the value of the
killingBlow
record component
-