Package net.minecraft.loot.condition
Record Class EnchantmentActiveCheckLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.EnchantmentActiveCheckLootCondition
- Record Components:
- active-
- All Implemented Interfaces:
- Predicate<LootContext>,- LootCondition,- LootContextAware
public record EnchantmentActiveCheckLootCondition(boolean active)
extends Record
implements LootCondition
- Mappings:
- Namespace - Name - named - net/minecraft/loot/condition/EnchantmentActiveCheckLootCondition- intermediary - net/minecraft/class_9752- official - eyv- named - active- intermediary - comp_2780- official - b
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.loot.condition.LootConditionLootCondition.Builder
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theactiverecord component.static final com.mojang.serialization.MapCodec<EnchantmentActiveCheckLootCondition> Fields inherited from interface net.minecraft.loot.condition.LootConditionBASE_CODEC, ENTRY_CODEC
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanactive()Returns the value of theactiverecord component.final booleanIndicates whether some other object is "equal to" this one.Set<ContextParameter<?>> getType()final inthashCode()Returns a hash code value for this object.static LootCondition.Builderstatic LootCondition.Builderbooleantest(LootContext lootContext) 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.LootContextAwarevalidate
- 
Field Details- 
activeprivate final boolean activeThe field for theactiverecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/loot/condition/EnchantmentActiveCheckLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_51807- Lnet/minecraft/class_9752;field_51807:Lcom/mojang/serialization/MapCodec;- official - a- Leyv;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
EnchantmentActiveCheckLootConditionpublic EnchantmentActiveCheckLootCondition(boolean bool) 
 
- 
- 
Method Details- 
test- Specified by:
- testin interface- Predicate<LootContext>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/loot/condition/EnchantmentActiveCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z- intermediary - method_60304- Lnet/minecraft/class_9752;method_60304(Lnet/minecraft/class_47;)Z- official - a- Leyv;a(Levs;)Z
 
- 
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;
 
- 
getAllowedParameters- Specified by:
- getAllowedParametersin interface- LootContextAware
- Mappings:
- Namespace - Name - Mixin selector - named - getAllowedParameters- Lnet/minecraft/loot/context/LootContextAware;getAllowedParameters()Ljava/util/Set;- intermediary - method_293- Lnet/minecraft/class_46;method_293()Ljava/util/Set;- official - a- Levt;a()Ljava/util/Set;
 
- 
requireActive- Mappings:
- Namespace - Name - Mixin selector - named - requireActive- Lnet/minecraft/loot/condition/EnchantmentActiveCheckLootCondition;requireActive()Lnet/minecraft/loot/condition/LootCondition$Builder;- intermediary - method_60305- Lnet/minecraft/class_9752;method_60305()Lnet/minecraft/class_5341$class_210;- official - c- Leyv;c()Lezb$a;
 
- 
requireInactive- Mappings:
- Namespace - Name - Mixin selector - named - requireInactive- Lnet/minecraft/loot/condition/EnchantmentActiveCheckLootCondition;requireInactive()Lnet/minecraft/loot/condition/LootCondition$Builder;- intermediary - method_60306- Lnet/minecraft/class_9752;method_60306()Lnet/minecraft/class_5341$class_210;- official - d- Leyv;d()Lezb$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 with '=='.
- 
activepublic boolean active()Returns the value of theactiverecord component.- Returns:
- the value of the activerecord component
 
 
-