Package net.minecraft.loot.condition
Record Class WeatherCheckLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.WeatherCheckLootCondition
- Record Components:
- raining-
- thundering-
- All Implemented Interfaces:
- Predicate<LootContext>,- LootCondition,- LootContextAware
public record WeatherCheckLootCondition(Optional<Boolean> raining, Optional<Boolean> thundering)
extends Record
implements LootCondition
- Mappings:
- Namespace - Name - named - net/minecraft/loot/condition/WeatherCheckLootCondition- intermediary - net/minecraft/class_227- official - ezl- named - raining- intermediary - comp_1889- official - b- named - thundering- intermediary - comp_1890- official - c
- 
Nested Class SummaryNested Classes
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<WeatherCheckLootCondition> The field for therainingrecord component.The field for thethunderingrecord component.Fields inherited from interface net.minecraft.loot.condition.LootConditionBASE_CODEC, ENTRY_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionWeatherCheckLootCondition(Optional<Boolean> optional, Optional<Boolean> optional2) 
- 
Method SummaryModifier and TypeMethodDescriptioncreate()final booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.raining()Returns the value of therainingrecord component.booleantest(LootContext lootContext) Returns the value of thethunderingrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.loot.context.LootContextAwaregetAllowedParameters, validate
- 
Field Details- 
rainingThe field for therainingrecord component.
- 
thunderingThe field for thethunderingrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/loot/condition/WeatherCheckLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_45878- Lnet/minecraft/class_227;field_45878:Lcom/mojang/serialization/MapCodec;- official - a- Lezl;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
WeatherCheckLootCondition
 
- 
- 
Method Details- 
getType- Specified by:
- getTypein interface- LootCondition
- Mappings:
- Namespace - Name - Mixin selector - named - getType- Lnet/minecraft/loot/condition/LootCondition;getType()Lnet/minecraft/loot/condition/LootConditionType;- intermediary - method_29325- Lnet/minecraft/class_5341;method_29325()Lnet/minecraft/class_5342;- official - b- Lezb;b()Lezc;
 
- 
test- Specified by:
- testin interface- Predicate<LootContext>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/loot/condition/WeatherCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z- intermediary - method_957- Lnet/minecraft/class_227;method_957(Lnet/minecraft/class_47;)Z- official - a- Lezl;a(Levs;)Z
 
- 
create- Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/loot/condition/WeatherCheckLootCondition;create()Lnet/minecraft/loot/condition/WeatherCheckLootCondition$Builder;- intermediary - method_35564- Lnet/minecraft/class_227;method_35564()Lnet/minecraft/class_227$class_6165;- official - c- Lezl;c()Lezl$a;
 
- 
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).
- 
rainingReturns the value of therainingrecord component.- Returns:
- the value of the rainingrecord component
 
- 
thunderingReturns the value of thethunderingrecord component.- Returns:
- the value of the thunderingrecord component
 
 
-