Record Class ChanneledLightningCriterion.Conditions
java.lang.Object
java.lang.Record
net.minecraft.advancement.criterion.ChanneledLightningCriterion.Conditions
- Record Components:
- player-
- victims-
- All Implemented Interfaces:
- AbstractCriterion.Conditions,- CriterionConditions
- Enclosing class:
- ChanneledLightningCriterion
public static record ChanneledLightningCriterion.Conditions(Optional<LootContextPredicate> player, List<LootContextPredicate> victims)
extends Record
implements AbstractCriterion.Conditions
- Mappings:
- Namespace - Name - named - net/minecraft/advancement/criterion/ChanneledLightningCriterion$Conditions- intermediary - net/minecraft/class_2002$class_2004- official - bc$a- named - player- intermediary - comp_2029- official - b- named - victims- intermediary - comp_2039- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ChanneledLightningCriterion.Conditions> private final Optional<LootContextPredicate> The field for theplayerrecord component.private final List<LootContextPredicate> The field for thevictimsrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionConditions(Optional<LootContextPredicate> playerPredicate, List<LootContextPredicate> victims) 
- 
Method SummaryModifier and TypeMethodDescriptioncreate(EntityPredicate.Builder[] victims) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanmatches(Collection<? extends LootContext> victims) player()Returns the value of theplayerrecord component.final StringtoString()Returns a string representation of this record class.voidvalidate(LootContextPredicateValidator validator) victims()Returns the value of thevictimsrecord component.
- 
Field Details- 
playerThe field for theplayerrecord component.
- 
victimsThe field for thevictimsrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/advancement/criterion/ChanneledLightningCriterion$Conditions;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_47231- Lnet/minecraft/class_2002$class_2004;field_47231:Lcom/mojang/serialization/Codec;- official - a- Lbc$a;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
Conditionspublic Conditions(Optional<LootContextPredicate> playerPredicate, List<LootContextPredicate> victims) - Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/advancement/criterion/ChanneledLightningCriterion$Conditions;<init>(Ljava/util/Optional;Ljava/util/List;)V- intermediary - <init>- Lnet/minecraft/class_2002$class_2004;<init>(Ljava/util/Optional;Ljava/util/List;)V- official - <init>- Lbc$a;<init>(Ljava/util/Optional;Ljava/util/List;)V
 
 
- 
- 
Method Details- 
createpublic static AdvancementCriterion<ChanneledLightningCriterion.Conditions> create(EntityPredicate.Builder[] victims) - Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/advancement/criterion/ChanneledLightningCriterion$Conditions;create([Lnet/minecraft/predicate/entity/EntityPredicate$Builder;)Lnet/minecraft/advancement/AdvancementCriterion;- intermediary - method_8809- Lnet/minecraft/class_2002$class_2004;method_8809([Lnet/minecraft/class_2048$class_2049;)Lnet/minecraft/class_175;- official - a- Lbc$a;a([Lbx$a;)Laq;
 
- 
matches- Mappings:
- Namespace - Name - Mixin selector - named - matches- Lnet/minecraft/advancement/criterion/ChanneledLightningCriterion$Conditions;matches(Ljava/util/Collection;)Z- intermediary - method_8808- Lnet/minecraft/class_2002$class_2004;method_8808(Ljava/util/Collection;)Z- official - a- Lbc$a;a(Ljava/util/Collection;)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
 
- 
victimsReturns the value of thevictimsrecord component.- Returns:
- the value of the victimsrecord component
 
 
-