Record Class ApplyExhaustion
java.lang.Object
java.lang.Record
net.minecraft.world.item.enchantment.effects.ApplyExhaustion
- All Implemented Interfaces:
EnchantmentEntityEffect, EnchantmentLocationBasedEffect
public record ApplyExhaustion(LevelBasedValue amount)
extends Record
implements EnchantmentEntityEffect
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final LevelBasedValueThe field for theamountrecord component.static final com.mojang.serialization.MapCodec<ApplyExhaustion> -
Constructor Summary
ConstructorsConstructorDescriptionApplyExhaustion(LevelBasedValue amount) Creates an instance of aApplyExhaustionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionamount()Returns the value of theamountrecord component.voidapply(ServerLevel serverLevel, int enchantmentLevel, EnchantedItemInUse item, Entity entity, Vec3 position) com.mojang.serialization.MapCodec<ApplyExhaustion> codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Methods inherited from interface EnchantmentEntityEffect
onChangedBlockMethods inherited from interface EnchantmentLocationBasedEffect
onDeactivated
-
Field Details
-
amount
The field for theamountrecord component. -
CODEC
-
-
Constructor Details
-
ApplyExhaustion
Creates an instance of aApplyExhaustionrecord class.- Parameters:
amount- the value for theamountrecord component
-
-
Method Details
-
apply
public void apply(ServerLevel serverLevel, int enchantmentLevel, EnchantedItemInUse item, Entity entity, Vec3 position) - Specified by:
applyin interfaceEnchantmentEntityEffect
-
codec
- Specified by:
codecin interfaceEnchantmentEntityEffect- Specified by:
codecin interfaceEnchantmentLocationBasedEffect
-
toString
-
hashCode
-
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 withObjects::equals(Object,Object). -
amount
Returns the value of theamountrecord component.- Returns:
- the value of the
amountrecord component
-