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 dax
named factor
intermediary comp_2734
official c
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<MultiplyEnchantmentEffect> private final EnchantmentLevelBasedValue
The field for thefactor
record component. -
Constructor Summary
ConstructorDescriptionMultiplyEnchantmentEffect
(EnchantmentLevelBasedValue enchantmentLevelBasedValue) -
Method Summary
Modifier and TypeMethodDescriptionfloat
final boolean
Indicates whether some other object is "equal to" this one.factor()
Returns the value of thefactor
record component.com.mojang.serialization.MapCodec
<MultiplyEnchantmentEffect> getCodec()
final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
factor
The field for thefactor
record 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
Ldax;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
MultiplyEnchantmentEffect
-
-
Method Details
-
apply
- Specified by:
apply
in interfaceEnchantmentValueEffect
- 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
Ldau;a(ILayw;F)F
-
getCodec
- Specified by:
getCodec
in interfaceEnchantmentValueEffect
- 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
Ldau;a()Lcom/mojang/serialization/MapCodec;
-
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 withObjects::equals(Object,Object)
. -
factor
Returns the value of thefactor
record component.- Returns:
- the value of the
factor
record component
-