Record Class FallAfterExplosionCriterion.Conditions
java.lang.Object
java.lang.Record
net.minecraft.advancement.criterion.FallAfterExplosionCriterion.Conditions
- Record Components:
player
-startPosition
-distance
-cause
-
- All Implemented Interfaces:
AbstractCriterion.Conditions
,CriterionConditions
- Enclosing class:
FallAfterExplosionCriterion
public static record FallAfterExplosionCriterion.Conditions(Optional<LootContextPredicate> player, Optional<LocationPredicate> startPosition, Optional<DistancePredicate> distance, Optional<LootContextPredicate> cause)
extends Record
implements AbstractCriterion.Conditions
- Mappings:
Namespace Name named net/minecraft/advancement/criterion/FallAfterExplosionCriterion$Conditions
intermediary net/minecraft/class_9421$class_9422
official by$a
named player
intermediary comp_2029
official b
named startPosition
intermediary comp_2488
official c
named distance
intermediary comp_2489
official d
named cause
intermediary comp_2490
official e
-
Field Summary
Modifier and TypeFieldDescriptionprivate final Optional
<LootContextPredicate> The field for thecause
record component.static final com.mojang.serialization.Codec
<FallAfterExplosionCriterion.Conditions> private final Optional
<DistancePredicate> The field for thedistance
record component.private final Optional
<LootContextPredicate> The field for theplayer
record component.private final Optional
<LocationPredicate> The field for thestartPosition
record component. -
Constructor Summary
ConstructorDescriptionConditions
(Optional<LootContextPredicate> optional, Optional<LocationPredicate> optional2, Optional<DistancePredicate> optional3, Optional<LootContextPredicate> optional4) -
Method Summary
Modifier and TypeMethodDescriptioncause()
Returns the value of thecause
record component.create
(DistancePredicate distance, EntityPredicate.Builder cause) distance()
Returns the value of thedistance
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.boolean
matches
(ServerWorld world, Vec3d startPosition, Vec3d endPosition, @Nullable LootContext cause) player()
Returns the value of theplayer
record component.Returns the value of thestartPosition
record component.final String
toString()
Returns a string representation of this record class.void
validate
(LootContextPredicateValidator validator)
-
Field Details
-
player
The field for theplayer
record component. -
startPosition
The field for thestartPosition
record component. -
distance
The field for thedistance
record component. -
cause
The field for thecause
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/advancement/criterion/FallAfterExplosionCriterion$Conditions;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_49978
Lnet/minecraft/class_9421$class_9422;field_49978:Lcom/mojang/serialization/Codec;
official a
Lby$a;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Conditions
public Conditions(Optional<LootContextPredicate> optional, Optional<LocationPredicate> optional2, Optional<DistancePredicate> optional3, Optional<LootContextPredicate> optional4)
-
-
Method Details
-
create
public static AdvancementCriterion<FallAfterExplosionCriterion.Conditions> create(DistancePredicate distance, EntityPredicate.Builder cause) - Mappings:
Namespace Name Mixin selector named create
Lnet/minecraft/advancement/criterion/FallAfterExplosionCriterion$Conditions;create(Lnet/minecraft/predicate/entity/DistancePredicate;Lnet/minecraft/predicate/entity/EntityPredicate$Builder;)Lnet/minecraft/advancement/AdvancementCriterion;
intermediary method_58361
Lnet/minecraft/class_9421$class_9422;method_58361(Lnet/minecraft/class_2025;Lnet/minecraft/class_2048$class_2049;)Lnet/minecraft/class_175;
official a
Lby$a;a(Lbl;Lbu$a;)Lan;
-
validate
- Specified by:
validate
in interfaceAbstractCriterion.Conditions
- Specified by:
validate
in interfaceCriterionConditions
- Mappings:
Namespace Name Mixin selector named validate
Lnet/minecraft/advancement/criterion/CriterionConditions;validate(Lnet/minecraft/predicate/entity/LootContextPredicateValidator;)V
intermediary method_54938
Lnet/minecraft/class_184;method_54938(Lnet/minecraft/class_8944;)V
official a
Laq;a(Lbg;)V
-
matches
public boolean matches(ServerWorld world, Vec3d startPosition, Vec3d endPosition, @Nullable @Nullable LootContext cause) - Mappings:
Namespace Name Mixin selector named matches
Lnet/minecraft/advancement/criterion/FallAfterExplosionCriterion$Conditions;matches(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/loot/context/LootContext;)Z
intermediary method_58360
Lnet/minecraft/class_9421$class_9422;method_58360(Lnet/minecraft/class_3218;Lnet/minecraft/class_243;Lnet/minecraft/class_243;Lnet/minecraft/class_47;)Z
official a
Lby$a;a(Larf;Levt;Levt;Leqk;)Z
-
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 interfaceAbstractCriterion.Conditions
- Returns:
- the value of the
player
record component
-
startPosition
Returns the value of thestartPosition
record component.- Returns:
- the value of the
startPosition
record component
-
distance
Returns the value of thedistance
record component.- Returns:
- the value of the
distance
record component
-
cause
Returns the value of thecause
record component.- Returns:
- the value of the
cause
record component
-