Record Class MultiplyEnchantmentEffect
java.lang.Object
java.lang.Record
net.minecraft.enchantment.effect.value.MultiplyEnchantmentEffect
- Record Components:
- factor-
- All Implemented Interfaces:
- EnchantmentValueEffect
public record MultiplyEnchantmentEffect(EnchantmentLevelBasedValue factor)
extends Record
implements EnchantmentValueEffect
- Mappings:
- Namespace - Name - named - net/minecraft/enchantment/effect/value/MultiplyEnchantmentEffect- intermediary - net/minecraft/class_9726- official - ddw- named - factor- intermediary - comp_2734- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<MultiplyEnchantmentEffect> private final EnchantmentLevelBasedValueThe field for thefactorrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionMultiplyEnchantmentEffect(EnchantmentLevelBasedValue enchantmentLevelBasedValue) 
- 
Method SummaryModifier and TypeMethodDescriptionfloatfinal booleanIndicates whether some other object is "equal to" this one.factor()Returns the value of thefactorrecord component.com.mojang.serialization.MapCodec<MultiplyEnchantmentEffect> getCodec()final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
factorThe field for thefactorrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/enchantment/effect/value/MultiplyEnchantmentEffect;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_51712- Lnet/minecraft/class_9726;field_51712:Lcom/mojang/serialization/MapCodec;- official - a- Lddw;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
MultiplyEnchantmentEffect
 
- 
- 
Method Details- 
apply- Specified by:
- applyin interface- EnchantmentValueEffect
- Mappings:
- Namespace - Name - Mixin selector - named - apply- Lnet/minecraft/enchantment/effect/EnchantmentValueEffect;apply(ILnet/minecraft/util/math/random/Random;F)F- intermediary - method_60213- Lnet/minecraft/class_9723;method_60213(ILnet/minecraft/class_5819;F)F- official - a- Lddt;a(ILazh;F)F
 
- 
getCodec- Specified by:
- getCodecin interface- EnchantmentValueEffect
- Mappings:
- Namespace - Name - Mixin selector - named - getCodec- Lnet/minecraft/enchantment/effect/EnchantmentValueEffect;getCodec()Lcom/mojang/serialization/MapCodec;- intermediary - method_60211- Lnet/minecraft/class_9723;method_60211()Lcom/mojang/serialization/MapCodec;- official - a- Lddt;a()Lcom/mojang/serialization/MapCodec;
 
- 
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).
- 
factorReturns the value of thefactorrecord component.- Returns:
- the value of the factorrecord component
 
 
-