Record Class KilledByArrowTrigger.TriggerInstance
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.KilledByArrowTrigger.TriggerInstance
- All Implemented Interfaces:
SimpleCriterionTrigger.SimpleInstance
,CriterionTriggerInstance
- Enclosing class:
KilledByArrowTrigger
public static record KilledByArrowTrigger.TriggerInstance(Optional<ContextAwarePredicate> player, List<ContextAwarePredicate> victims, MinMaxBounds.Ints uniqueEntityTypes, Optional<ItemPredicate> firedFromWeapon)
extends Record
implements SimpleCriterionTrigger.SimpleInstance
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<KilledByArrowTrigger.TriggerInstance> private final Optional
<ItemPredicate> The field for thefiredFromWeapon
record component.private final Optional
<ContextAwarePredicate> The field for theplayer
record component.private final MinMaxBounds.Ints
The field for theuniqueEntityTypes
record component.private final List
<ContextAwarePredicate> The field for thevictims
record component. -
Constructor Summary
ConstructorsConstructorDescriptionTriggerInstance
(Optional<ContextAwarePredicate> player, List<ContextAwarePredicate> victims, MinMaxBounds.Ints uniqueEntityTypes, Optional<ItemPredicate> firedFromWeapon) Creates an instance of aTriggerInstance
record class. -
Method Summary
Modifier and TypeMethodDescriptioncrossbowKilled
(HolderGetter<Item> p_373005_, EntityPredicate.Builder... p_373068_) crossbowKilled
(HolderGetter<Item> p_373076_, MinMaxBounds.Ints p_372922_) final boolean
Indicates whether some other object is "equal to" this one.Returns the value of thefiredFromWeapon
record component.final int
hashCode()
Returns a hash code value for this object.boolean
matches
(Collection<LootContext> p_372887_, int p_372892_, ItemStack p_372931_) player()
Returns the value of theplayer
record component.final String
toString()
Returns a string representation of this record class.Returns the value of theuniqueEntityTypes
record component.void
validate
(CriterionValidator p_373032_) victims()
Returns the value of thevictims
record component.
-
Field Details
-
player
The field for theplayer
record component. -
victims
The field for thevictims
record component. -
uniqueEntityTypes
The field for theuniqueEntityTypes
record component. -
firedFromWeapon
The field for thefiredFromWeapon
record component. -
CODEC
-
-
Constructor Details
-
TriggerInstance
public TriggerInstance(Optional<ContextAwarePredicate> player, List<ContextAwarePredicate> victims, MinMaxBounds.Ints uniqueEntityTypes, Optional<ItemPredicate> firedFromWeapon) Creates an instance of aTriggerInstance
record class.- Parameters:
player
- the value for theplayer
record componentvictims
- the value for thevictims
record componentuniqueEntityTypes
- the value for theuniqueEntityTypes
record componentfiredFromWeapon
- the value for thefiredFromWeapon
record component
-
-
Method Details
-
crossbowKilled
public static Criterion<KilledByArrowTrigger.TriggerInstance> crossbowKilled(HolderGetter<Item> p_373005_, EntityPredicate.Builder... p_373068_) -
crossbowKilled
public static Criterion<KilledByArrowTrigger.TriggerInstance> crossbowKilled(HolderGetter<Item> p_373076_, MinMaxBounds.Ints p_372922_) -
matches
public boolean matches(Collection<LootContext> p_372887_, int p_372892_, @Nullable ItemStack p_372931_) -
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
-
victims
Returns the value of thevictims
record component.- Returns:
- the value of the
victims
record component
-
uniqueEntityTypes
Returns the value of theuniqueEntityTypes
record component.- Returns:
- the value of the
uniqueEntityTypes
record component
-
firedFromWeapon
Returns the value of thefiredFromWeapon
record component.- Returns:
- the value of the
firedFromWeapon
record component
-