Record Class LightningStrikeCriterion.Conditions
java.lang.Object
java.lang.Record
net.minecraft.advancement.criterion.LightningStrikeCriterion.Conditions
- Record Components:
- player-
- lightning-
- bystander-
- All Implemented Interfaces:
- AbstractCriterion.Conditions,- CriterionConditions
- Enclosing class:
- LightningStrikeCriterion
public static record LightningStrikeCriterion.Conditions(Optional<LootContextPredicate> player, Optional<LootContextPredicate> lightning, Optional<LootContextPredicate> bystander)
extends Record
implements AbstractCriterion.Conditions
- Mappings:
- Namespace - Name - named - net/minecraft/advancement/criterion/LightningStrikeCriterion$Conditions- intermediary - net/minecraft/class_6405$class_6406- official - dh$a- named - player- intermediary - comp_2029- official - b- named - lightning- intermediary - comp_2072- official - c- named - bystander- intermediary - comp_2073- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final Optional<LootContextPredicate> The field for thebystanderrecord component.static final com.mojang.serialization.Codec<LightningStrikeCriterion.Conditions> private final Optional<LootContextPredicate> The field for thelightningrecord component.private final Optional<LootContextPredicate> The field for theplayerrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionConditions(Optional<LootContextPredicate> playerPredicate, Optional<LootContextPredicate> lightning, Optional<LootContextPredicate> bystander) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thebystanderrecord component.create(Optional<EntityPredicate> lightning, Optional<EntityPredicate> bystander) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thelightningrecord component.player()Returns the value of theplayerrecord component.booleantest(LootContext lightning, List<LootContext> bystanders) final StringtoString()Returns a string representation of this record class.voidvalidate(LootContextPredicateValidator validator) 
- 
Field Details- 
playerThe field for theplayerrecord component.
- 
lightningThe field for thelightningrecord component.
- 
bystanderThe field for thebystanderrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/advancement/criterion/LightningStrikeCriterion$Conditions;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_47306- Lnet/minecraft/class_6405$class_6406;field_47306:Lcom/mojang/serialization/Codec;- official - a- Ldh$a;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
Conditionspublic Conditions(Optional<LootContextPredicate> playerPredicate, Optional<LootContextPredicate> lightning, Optional<LootContextPredicate> bystander) - Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/advancement/criterion/LightningStrikeCriterion$Conditions;<init>(Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V- intermediary - <init>- Lnet/minecraft/class_6405$class_6406;<init>(Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V- official - <init>- Ldh$a;<init>(Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V
 
 
- 
- 
Method Details- 
createpublic static AdvancementCriterion<LightningStrikeCriterion.Conditions> create(Optional<EntityPredicate> lightning, Optional<EntityPredicate> bystander) - Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/advancement/criterion/LightningStrikeCriterion$Conditions;create(Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/advancement/AdvancementCriterion;- intermediary - method_37243- Lnet/minecraft/class_6405$class_6406;method_37243(Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/class_175;- official - a- Ldh$a;a(Ljava/util/Optional;Ljava/util/Optional;)Laq;
 
- 
test- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/advancement/criterion/LightningStrikeCriterion$Conditions;test(Lnet/minecraft/loot/context/LootContext;Ljava/util/List;)Z- intermediary - method_37244- Lnet/minecraft/class_6405$class_6406;method_37244(Lnet/minecraft/class_47;Ljava/util/List;)Z- official - a- Ldh$a;a(Levs;Ljava/util/List;)Z
 
- 
validate- Specified by:
- validatein interface- AbstractCriterion.Conditions
- Specified by:
- validatein interface- CriterionConditions
- 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- Lat;a(Lbj;)V
 
- 
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
 
- 
lightningReturns the value of thelightningrecord component.- Returns:
- the value of the lightningrecord component
 
- 
bystanderReturns the value of thebystanderrecord component.- Returns:
- the value of the bystanderrecord component
 
 
-