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 euw
named active
intermediary comp_2780
official b
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.loot.condition.LootCondition
LootCondition.Builder
-
Field Summary
Modifier and TypeFieldDescriptionprivate final boolean
The field for theactive
record component.static final com.mojang.serialization.MapCodec
<EnchantmentActiveCheckLootCondition> Fields inherited from interface net.minecraft.loot.condition.LootCondition
BASE_CODEC, ENTRY_CODEC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
active()
Returns the value of theactive
record component.final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.static LootCondition.Builder
static LootCondition.Builder
boolean
test
(LootContext lootContext) final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.loot.context.LootContextAware
validate
-
Field Details
-
active
private final boolean activeThe field for theactive
record 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
Leuw;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
EnchantmentActiveCheckLootCondition
public EnchantmentActiveCheckLootCondition(boolean bool)
-
-
Method Details
-
test
- Specified by:
test
in interfacePredicate<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
Leuw;a(Lerr;)Z
-
getType
- Specified by:
getType
in interfaceLootCondition
- 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
Levc;b()Levd;
-
getRequiredParameters
- Specified by:
getRequiredParameters
in interfaceLootContextAware
- Mappings:
Namespace Name Mixin selector named getRequiredParameters
Lnet/minecraft/loot/context/LootContextAware;getRequiredParameters()Ljava/util/Set;
intermediary method_293
Lnet/minecraft/class_46;method_293()Ljava/util/Set;
official a
Lers;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
Leuw;c()Levc$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
Leuw;d()Levc$a;
-
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 with '=='. -
active
public boolean active()Returns the value of theactive
record component.- Returns:
- the value of the
active
record component
-